diff options
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/init.vim | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index ca991da..76e25df 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -27,6 +27,14 @@ let g:lightline = { """ +" Builtin things +" + +" List of vim syntaxes to highlight in rST code blocks +let g:rst_syntax_code_list = ['vim', 'c', 'cpp', 'python', 'sh'] + + +""" " NVim settings " @@ -70,9 +78,6 @@ autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/ autocmd InsertLeave * match ExtraWhitespace /\s\+$/ autocmd BufWinLeave * call clearmatches() -" List of vim syntaxes to highlight in rST code blocks -let g:rst_syntax_code_list = ['vim', 'c', 'cpp', 'python', 'sh'] - """ |