google_code_jam rename dir structure.

This commit is contained in:
2014-11-12 19:50:09 +04:00
parent a230a6c89a
commit bf8dd5f87a
21 changed files with 0 additions and 0 deletions

12
.vimrc.local Normal file
View 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