Tweak vim theme for terminal after quitting

This commit is contained in:
Hunter Haugen 2011-12-22 15:31:01 -08:00
parent 0ffd61d7e2
commit 19e0fdfb25

2
.vimrc
View file

@ -19,7 +19,7 @@ set fileencoding=utf-8
" change cursor colour depending upon mode " change cursor colour depending upon mode
if exists('&t_SI') if exists('&t_SI')
let &t_SI = "\<Esc>]12;lightgoldenrod\x7" let &t_SI = "\<Esc>]12;lightgoldenrod\x7"
let &t_EI = "\<Esc>]12;green\x7" let &t_EI = "\<Esc>]12;greenyellow\x7"
elseif has("gui") elseif has("gui")
set guicursor=n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175 set guicursor=n-v-c:block-Cursor/lCursor,ve:ver35-Cursor,o:hor50-Cursor,i-ci:ver25-Cursor/lCursor,r-cr:hor20-Cursor/lCursor,sm:block-Cursor-blinkwait175-blinkoff150-blinkon175
endif endif