Fix colorschemes in vimrc
This commit is contained in:
parent
d14cbca661
commit
76d6f308da
1 changed files with 9 additions and 6 deletions
15
vimrc
15
vimrc
|
|
@ -75,7 +75,6 @@ set nojoinspaces
|
|||
set number
|
||||
set scrolloff=3
|
||||
set sidescrolloff=5
|
||||
set bg=light
|
||||
|
||||
set pastetoggle=<F2>
|
||||
|
||||
|
|
@ -110,22 +109,26 @@ endif
|
|||
" tell SnipMate who I am
|
||||
let g:snips_author = 'Eryn Wells <eryn@3b518c.com>'
|
||||
|
||||
if has('autocmd')
|
||||
autocmd BufWritePost .vimrc source $MYVIMRC
|
||||
endif
|
||||
"if has('autocmd')
|
||||
" autocmd BufWritePost .vimrc source $MYVIMRC
|
||||
"endif
|
||||
|
||||
if has('gui_running')
|
||||
if has('win32') || has('win64')
|
||||
set guifont=Inconsolata:h18
|
||||
elseif has('mac')
|
||||
set guifont=Inconsolata:h18
|
||||
set guifont=Menlo:h14
|
||||
elseif has('linux')
|
||||
set guifont=Inconsolata\ 14
|
||||
endif
|
||||
set cursorline
|
||||
set guioptions-=T " turn off toolbar
|
||||
set guioptions-=m " turn off toolbar
|
||||
colorscheme blackboard
|
||||
|
||||
set bg=light
|
||||
colorscheme solarized
|
||||
else
|
||||
colorscheme default
|
||||
endif
|
||||
|
||||
let mapleader=','
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue