added vim-asciidoc, which-key, and some asciidoc shortcuts

This commit is contained in:
2025-12-29 08:26:11 -06:00
parent 31d47908c3
commit 058b033928
2 changed files with 8 additions and 0 deletions

6
ftplugin/asciidoc.lua Normal file
View File

@@ -0,0 +1,6 @@
vim.keymap.set({"n" , "v"} , "<leader>k" , "?=\\+ <CR>" , { desc = "MOVE UP HEADING" })
vim.keymap.set({"n" , "v"} , "<leader>j" , "/=\\+ <CR>" , { desc = "MOVE DOWN HEADING" })
vim.keymap.set({"n" , "v"} , "k" , "gk" , { desc = "MOVE UP VISUALLY" })
vim.keymap.set({"n" , "v"} , "j" , "gj" , { desc = "MOVE DOWN VISUALLY" })
vim.keymap.set({"n" , "v"} , "j" , "gj" , { desc = "MOVE DOWN VISUALLY" })

View File

@@ -23,6 +23,8 @@ Plug('rebelot/kanagawa.nvim')
Plug('hat0uma/csvview.nvim')
Plug('catppuccin/nvim')
Plug('jbyuki/carrot.nvim')
Plug('habamax/vim-asciidoctor')
Plug('folke/which-key.nvim')
vim.call('plug#end')
--┌──────────────┐