diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-11-25 05:59:01 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-11-25 05:59:01 +0100 |
commit | 3ba7024ca5435c8182a3583a6f4a5b630a223fed (patch) | |
tree | 499d70602c9bfa987eb40c82e752925f1a694278 | |
parent | 6023ae917f2a09a71bd79cc8c2221cd8014130aa (diff) | |
download | dotfiles-3ba7024ca5435c8182a3583a6f4a5b630a223fed.tar.xz |
nvim: init: Move rst_syntax_code_list up
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r-- | nvim/init.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index db1cc36..5eb879f 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -54,6 +54,9 @@ set copyindent set listchars=tab:»·,trail:· set list +" List of vim syntaxes to highlight in rST code blocks +let g:rst_syntax_code_list = ['vim', 'c', 'cpp', 'python', 'sh'] + """ @@ -84,8 +87,6 @@ let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 1 -" List of vim syntaxes to highlight in rST code blocks -let g:rst_syntax_code_list = ['vim', 'c', 'cpp', 'python', 'sh'] let g:ctrlp_extensions = ['tag', 'buffertag', 'dir', 'undo', 'line', \ 'changes', 'mixed', 'bookmarkdir'] |