Fixed some issues with terminal setup

pull/41/head
amix 10 years ago
parent ba783e5fd9
commit 5d177a21f6
  1. 2
      sources_forked/peaksea/colors/peaksea.vim
  2. 13
      vimrcs/extended.vim

@ -36,7 +36,7 @@ if exists("syntax_on")
syntax reset
endif
let g:colors_name = expand("<sfile>:t:r")
let g:colors_name = "peaksea"
" I don't want to abuse folding, but here folding is used to avoid confusion.
if &background=='light'

@ -8,10 +8,6 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => GUI related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set background=dark
colorscheme peaksea
" Set font according to system
if has("mac") || has("macunix")
set gfn=Source\ Code\ Pro:h15,Menlo:h15
@ -35,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

Loading…
Cancel
Save