google_code_jam rename dir structure.
This commit is contained in:
12
.vimrc.local
Normal file
12
.vimrc.local
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
let s:vimrc=expand('<sfile>')
|
||||
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'
|
||||
elseif filereadable(s:vimrc.'.linux') && has('unix')
|
||||
source s:vimrc.'.linux'
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user