add comment.nvim
This commit is contained in:
parent
355d26c305
commit
e705bfc8e4
3 changed files with 49 additions and 0 deletions
|
@ -10,6 +10,7 @@ require('statusline')
|
||||||
require('snippets')
|
require('snippets')
|
||||||
require('autocompletion')
|
require('autocompletion')
|
||||||
require('treesitterconfig')
|
require('treesitterconfig')
|
||||||
|
require('comments')
|
||||||
require('troubleconfig')
|
require('troubleconfig')
|
||||||
require('null-ls-config')
|
require('null-ls-config')
|
||||||
require('gitsigns-config')
|
require('gitsigns-config')
|
||||||
|
|
45
nvim/lua/comments.lua
Normal file
45
nvim/lua/comments.lua
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
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-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,
|
||||||
|
---Extended mapping; `g>` `g<` `g>[count]{motion}` `g<[count]{motion}`
|
||||||
|
extended = false,
|
||||||
|
},
|
||||||
|
---Function to call before (un)comment
|
||||||
|
pre_hook = nil,
|
||||||
|
---Function to call after (un)comment
|
||||||
|
post_hook = nil,
|
||||||
|
})
|
|
@ -10,6 +10,9 @@ Plug 'editorconfig/editorconfig-vim'
|
||||||
-- brackets management
|
-- brackets management
|
||||||
Plug 'kylechui/nvim-surround'
|
Plug 'kylechui/nvim-surround'
|
||||||
|
|
||||||
|
-- comments
|
||||||
|
Plug 'numToStr/Comment.nvim'
|
||||||
|
|
||||||
-- shift and tab setup
|
-- shift and tab setup
|
||||||
Plug 'tpope/vim-sleuth'
|
Plug 'tpope/vim-sleuth'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue