summary refs log tree commit diff
path: root/.vim/lua/plugins.lua
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-11-08 02:53:58 +0100
committerRobert Günzler <r@gnzler.io>2021-11-08 02:53:58 +0100
commit28e754e2efa3cf50b8c03bb49e02127e56948dd8 (patch)
tree37747ea6a7747e4232ddb7a03cd065bc0025f474 /.vim/lua/plugins.lua
parenta53229ca07a32fff9e4f01678d03392d90629c49 (diff)
vim: disable block comment mappings
Diffstat (limited to '.vim/lua/plugins.lua')
-rw-r--r--.vim/lua/plugins.lua6
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',