adde Commenting pluging

This commit is contained in:
Nicolai Van der Storm 2023-10-20 11:51:46 +02:00
parent bea59d896f
commit 7cd9208cc3
Signed by: NicolaiVdS
GPG Key ID: CA53B34914EFD59B
2 changed files with 54 additions and 0 deletions

View File

@ -82,6 +82,11 @@
config = toLuaFile ./plugins/presence.lua;
}
{
plugin = vimPlugins.comment-vim;
config = toLuaFile ./plugins/comment.lua;
}
];
extraLuaConfig = ''

View File

@ -0,0 +1,49 @@
local status, plugin = pcall(require,'Comment')
if not status then
print('Error with plugin: ', plugin)
return
end
plugin.setup({
---Add a space b/w comment and the line
padding = true,
---Whether the cursor should stay at its position
sticky = true,
---Lines to be ignored while (un)comment
ignore = nil,
---LHS of toggle mappings in NORMAL mode
toggler = {
---Line-comment toggle keymap
line = 'gcc',
---Block-comment toggle keymap
block = 'gbc',
},
---LHS of operator-pending mappings in NORMAL and VISUAL mode
opleader = {
---Line-comment keymap
line = 'gc',
---Block-comment keymap
block = 'gb',
},
---LHS of extra mappings
extra = {
---Add comment on the line above
above = 'gcO',
---Add comment on the line below
below = 'gco',
---Add comment at the end of line
eol = 'gcA',
},
---Enable keybindings
---NOTE: If given `false` then the plugin won't create any mappings
mappings = {
---Operator-pending mapping; `gcc` `gbc` `gc[count]{motion}` `gb[count]{motion}`
basic = true,
---Extra mapping; `gco`, `gcO`, `gcA`
extra = true,
},
---Function to call before (un)comment
pre_hook = nil,
---Function to call after (un)comment
post_hook = nil,
})