Skip to content

Instantly share code, notes, and snippets.

@aliou
Created April 12, 2013 11:31
Show Gist options
  • Save aliou/5371387 to your computer and use it in GitHub Desktop.
Save aliou/5371387 to your computer and use it in GitHub Desktop.
if has("win32")
if filereadable("_vimrc.win.vim")
source _vimrc.win.vim
endif
endif
if has("unix")
if system('uname')=~'Darwin'
if filereadable("vimrc.mac.vim")
source vimrc.mac.vim
endif
else
if filereadable("vimrc.unix.vim")
source vimrc.unix.vim
endif
endif
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment