]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vimrc
Seems that LANG is not required to be overriden for fugitive
[dotfiles.git] / vim / .vimrc
index e18c78558840691171fc28b62a997aafdfda984a..b4da21a29d39464f5afa4500e98f3204ce59328a 100644 (file)
@@ -28,6 +28,7 @@ set backspace=indent,eol
 set shortmess=aoOtI
 set highlight-=v:Visual
 set highlight+=vr
+set highlight+=sr
 set cpoptions+=$
 set showcmd
 set showmatch
@@ -79,7 +80,7 @@ set statusline+=%3*[%c%V:0x%B]
 set statusline+=%4*%{LintStatus()}
 set statusline+=%*\ %P
 
-function! LintStatus() " it is overrided in ftplugin/python/pylint.vim
+function! LintStatus() " it is overrided in ftplugins
     return ""
 endfunction
 " }}}
@@ -107,7 +108,6 @@ autocmd BufEnter * let &titlestring = expand("%:t")
 " }}}
 
 " Fugitive {{{
-let g:fugitive_git_executable = "LANG=en.UTF-8 git"
 nmap <F7> "cyiw:execute "Gvsplit " . @c<CR>zR
 nmap <F9> :diffupdate<CR>:syntax off<CR>:syntax on<CR>
 " }}}