1
0
mirror of https://github.com/amix/vimrc synced 2025-07-09 02:25:00 +08:00

Merging upstream, wiping syntastic.

This commit is contained in:
Maksim Pecherskiy
2014-08-07 19:39:15 -04:00
402 changed files with 12339 additions and 22184 deletions

View File

@ -8,15 +8,13 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => GUI related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set background=dark
colorscheme peaksea
" Set font according to system
if has("mac") || has("macunix")
set gfn=Menlo:h15
set gfn=Source\ Code\ Pro:h15,Menlo:h15
elseif has("win16") || has("win32")
set gfn=Bitstream\ Vera\ Sans\ Mono:h11
set gfn=Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11
elseif has("linux")
set gfn=Source\ Code\ Pro:h12,Bitstream\ Vera\ Sans\ Mono:h11
elseif has("unix")
set gfn=Monospace\ 11
endif
@ -33,6 +31,15 @@ set guioptions-=R
set guioptions-=l
set guioptions-=L
" Colorscheme
if has("gui_running")
set background=dark
colorscheme peaksea
else
colorscheme desert
let g:colors_name="desert"
endif
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Fast editing and reloading of vimrc configs