diff options
Diffstat (limited to '.vim/lua/plugins.lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index 7d19781..d808784 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -56,7 +56,10 @@ return require('packer').startup({function() nnoremap { '[h', function() vim.fn['sy#jump#prev_hunk'](1) end } end} -- }}} - use {'tpope/vim-commentary'} -- auto-comment using `gcc` + use {'numToStr/Comment.nvim', + config = function() + require('Comment').setup() + end} use {'windwp/nvim-autopairs', config = function() |