diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2018-07-19 14:08:08 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2018-07-19 14:08:08 +0200 |
commit | 356ab513f1f36381f163ca514f97385a8413bd5d (patch) | |
tree | 542653d9f51918fb5327374017794ca3cceea05a /nvim | |
parent | 175751ba8cebf560ddd8651a7f20c07854a19493 (diff) | |
download | dotfiles-356ab513f1f36381f163ca514f97385a8413bd5d.tar.xz |
nvim: Move rst_syntax_code_list
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
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'] - """ |