From 5f9ec0e0b5bb617b1e7715683ccd5ccb45788472 Mon Sep 17 00:00:00 2001 From: Vahagn Khachatryan Date: Wed, 24 Dec 2014 12:56:51 +0400 Subject: [PATCH] Fix for linux in .vimrc.local --- .vimrc.local | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc.local b/.vimrc.local index 284df5a..bf3e82a 100644 --- a/.vimrc.local +++ b/.vimrc.local @@ -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