diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-08 02:53:58 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-08 02:53:58 +0100 |
| commit | 28e754e2efa3cf50b8c03bb49e02127e56948dd8 (patch) | |
| tree | 37747ea6a7747e4232ddb7a03cd065bc0025f474 /.vim/lua/plugins.lua | |
| parent | a53229ca07a32fff9e4f01678d03392d90629c49 (diff) | |
vim: disable block comment mappings
Diffstat (limited to '.vim/lua/plugins.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', |