Updated vimrc

This commit is contained in:
amix
2015-07-13 11:22:46 +01:00
parent 9a2843c2a5
commit d7752b59ae
301 changed files with 4699 additions and 7969 deletions

View File

@@ -13,12 +13,12 @@
" We use rst2pseudoxml.py, as it is ever so marginally faster than the other
" rst2${x} tools in docutils.
if exists("g:loaded_syntastic_rst_rst2pseudoxml_checker")
if exists('g:loaded_syntastic_rst_rst2pseudoxml_checker')
finish
endif
let g:loaded_syntastic_rst_rst2pseudoxml_checker = 1
let s:rst2pseudoxml = executable('rst2pseudoxml.py') ? 'rst2pseudoxml.py' : 'rst2pseudoxml'
let s:rst2pseudoxml = (executable('rst2pseudoxml.py') && !syntastic#util#isRunningWindows()) ? 'rst2pseudoxml.py' : 'rst2pseudoxml'
let s:save_cpo = &cpo
set cpo&vim