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 { return {
'LudoPinelli/comment-box.nvim', 'LudoPinelli/comment-box.nvim',
event = { 'BufReadPre', 'BufNewFile' }, event = { 'BufReadPre', 'BufNewFile', 'VeryLazy' },
keys = { opts = {
{ '<leader>Cb', '<cmd>CBllbox19<CR>', desc = 'Insert a default comment box' }, doc_width = 80,
{ '<leader>Cl', '<cmd>CBccline6<CR>', desc = 'Insert a default comment line' }, box_width = 60,
line_width = 70,
outer_blank_lines_above = true,
outer_blank_lines_below = true,
inner_blank_lines = true,
}, },
} }