refactor: move keymaps to main keymaps file

🔧add config options
This commit is contained in:
2024-11-29 17:15:32 -05:00
parent ca1e108304
commit 1038d2008b
+8 -4
View File
@@ -1,8 +1,12 @@
return {
'LudoPinelli/comment-box.nvim',
event = { 'BufReadPre', 'BufNewFile' },
keys = {
{ '<leader>Cb', '<cmd>CBllbox19<CR>', desc = 'Insert a default comment box' },
{ '<leader>Cl', '<cmd>CBccline6<CR>', desc = 'Insert a default comment line' },
event = { 'BufReadPre', 'BufNewFile', 'VeryLazy' },
opts = {
doc_width = 80,
box_width = 60,
line_width = 70,
outer_blank_lines_above = true,
outer_blank_lines_below = true,
inner_blank_lines = true,
},
}