Update vim settings
This commit is contained in:
parent
962c8256c2
commit
af3b93e85f
2 changed files with 18 additions and 2 deletions
4
.gvimrc
4
.gvimrc
|
@ -1,5 +1,5 @@
|
|||
source ~/.vimrc
|
||||
|
||||
colorscheme Tomorrow-Night-Blue
|
||||
set guioptions=aci
|
||||
|
||||
winsize 80 50
|
||||
set guifont=Consolas\ 10
|
||||
|
|
16
.vimrc
16
.vimrc
|
@ -50,3 +50,19 @@ filetype plugin on
|
|||
filetype indent on
|
||||
" --- }}}
|
||||
|
||||
" --- Style and font --------------------------------------------------------{{{
|
||||
if has('gui_running')
|
||||
colorscheme Tomorrow-Night-Blue
|
||||
elseif $COLORTERM == 'gnome-terminal'
|
||||
set term=gnome-256color
|
||||
colorscheme Tomorrow-Night-Blue
|
||||
else
|
||||
colorscheme default
|
||||
endif
|
||||
|
||||
if has("gui_gtk2")
|
||||
set guifont=Ubuntu\ Mono\ 10
|
||||
else
|
||||
set guifont=Ubuntu\ Mono:01
|
||||
endif
|
||||
" --- }}}
|
||||
|
|
Loading…
Reference in a new issue