mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 05:24:41 -05:00
feat(init): first init
This commit is contained in:
29
lua/config/plugin/comment.lua
Normal file
29
lua/config/plugin/comment.lua
Normal file
@@ -0,0 +1,29 @@
|
||||
require("Comment").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 = 'gcc', -- Line-comment toggle keymap
|
||||
block = 'gbc', -- Block-comment toggle keymap
|
||||
},
|
||||
-- LHS of operator-pending mappings in NORMAL and VISUAL mode
|
||||
opleader = {
|
||||
line = 'gc', -- Line-comment keymap
|
||||
block = 'gb', -- Block-comment keymap
|
||||
},
|
||||
-- LHS of extra mappings
|
||||
extra = {
|
||||
above = 'gcO', -- Add comment on the line above
|
||||
below = 'gco', -- Add comment on the line below
|
||||
eol = 'gcA', -- Add comment at the end of line
|
||||
},
|
||||
-- Enable keybindings
|
||||
mappings = {
|
||||
basic = true, -- Operator-pending mapping; `gcc` `gbc` `gc[count]{motion}` `gb[count]{motion}`
|
||||
extra = true, -- Extra mapping; `gco`, `gcO`, `gcA`
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user