Commit 2811313

mo khan <mo.khan@gmail.com>
2020-12-25 03:34:05
do not set signcolumn in nvim
1 parent 32d4942
Changed files (1)
vimrc
@@ -58,7 +58,9 @@ set ignorecase  " searches are case insensitive...
 set smartcase   " ... unless they contain at least one capital letter
 set showmatch   " briefly jump to the matching bracket.
 set cmdheight=2 " Give more space for displaying messages.
-set signcolumn=number
+if !has("nvim")
+  set signcolumn=number
+endif
 
 runtime macros/matchit.vim
 color happy_hacking