The new CF5 system.

This commit is contained in:
2014-11-02 20:13:55 +04:00
parent 51837af39f
commit cb5ee0ab6d
6 changed files with 91 additions and 174 deletions

12
.vimrc 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