Fix for linux in .vimrc.local

This commit is contained in:
Vahagn Khachatryan
2014-12-24 12:56:51 +04:00
parent 3af944a110
commit 5f9ec0e0b5

View File

@@ -5,7 +5,7 @@ let s:host=hostname()
if filereadable(s:vimrc.'.'.s:host)
execute ':source '.s:vimrc.'.'.s:host
elseif filereadable(s:vimrc.'.win64') && has('win64')
source s:vimrc.'.win64'
execute ':source '.s:vimrc.'.win64'
elseif filereadable(s:vimrc.'.linux') && has('unix')
source s:vimrc.'.linux'
execute ':source '.s:vimrc.'.linux'
endif