Split theme for Terminal/GUI
This commit is contained in:
parent
fcbc54e46f
commit
a2b3f8ea6a
1 changed files with 10 additions and 9 deletions
19
vimrc
19
vimrc
|
@ -125,18 +125,13 @@ set ttyfast
|
|||
set updatetime=300
|
||||
set wrap
|
||||
|
||||
" Set theme for Terminal.
|
||||
set background=dark
|
||||
colorscheme tempus_night
|
||||
|
||||
"===============================================================================
|
||||
" General settings for non-minimal Vim builds.
|
||||
|
||||
" Set theme for Terminal.
|
||||
if has('gui')
|
||||
set background=light
|
||||
colorscheme tempus_totus
|
||||
else
|
||||
set background=dark
|
||||
colorscheme tempus_night
|
||||
endif
|
||||
|
||||
if has('eval')
|
||||
" Protect commands that are only available when +eval is enabled.
|
||||
" Technically only 'if 1' would be required, as 'has()' is provided by
|
||||
|
@ -238,6 +233,12 @@ endif
|
|||
"===============================================================================
|
||||
" Settings based on feature detection.
|
||||
|
||||
" Set theme for GUI.
|
||||
if has('gui')
|
||||
set background=light
|
||||
colorscheme tempus_totus
|
||||
endif
|
||||
|
||||
if has('autocmd')
|
||||
autocmd BufRead,BufNewFile * set omnifunc=syntaxcomplete#Complete
|
||||
autocmd BufRead,BufNewFile *.go set noet sw=8 ts=8
|
||||
|
|
Loading…
Reference in a new issue