diff options
Diffstat (limited to '.vim/lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index ee00949..6f66842 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -58,7 +58,11 @@ return require('packer').startup({function() use {'numToStr/Comment.nvim', config = function() - require('Comment').setup() + require('Comment').setup { + opleader = { + block = 'gC', + } + } end} use {'windwp/nvim-autopairs', |