From 3ba7024ca5435c8182a3583a6f4a5b630a223fed Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Wed, 25 Nov 2015 05:59:01 +0100 Subject: nvim: init: Move rst_syntax_code_list up MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- nvim/init.vim | 5 +++-- 1 file 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'] -- cgit v1.2.3-54-g00ecf