You've already forked dotfiles
Moving all the nvim files to a subdirectory and updated the deploy script.
This commit is contained in:
16
nvim/lua/plugins/comment.lua
Normal file
16
nvim/lua/plugins/comment.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
return {
|
||||
'numToStr/Comment.nvim',
|
||||
config = function()
|
||||
require('Comment').setup {
|
||||
ignore = '^$',
|
||||
toggler = {
|
||||
line = 'gc',
|
||||
block = '<nop>',
|
||||
},
|
||||
}
|
||||
end,
|
||||
keys = {
|
||||
{ '<leader>c', ':norm gcc<CR>' },
|
||||
{ '<leader>c', ':norm gc<CR>', mode = 'v' },
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user