back to solarized, but keep the option commented out
This commit is contained in:
parent
5420c42ee0
commit
3811f37f92
1 changed files with 20 additions and 14 deletions
34
vimrc
34
vimrc
|
@ -109,11 +109,12 @@ if v:version >= 700
|
||||||
"Plug 'ervandew/supertab' "TAB autocompletion
|
"Plug 'ervandew/supertab' "TAB autocompletion
|
||||||
|
|
||||||
" colorschemes
|
" colorschemes
|
||||||
Plug 'cocopon/iceberg.vim'
|
|
||||||
Plug 'lifepillar/vim-solarized8'
|
Plug 'lifepillar/vim-solarized8'
|
||||||
Plug 'KeitaNakamura/neodark.vim'
|
"Plug 'jonathanfilip/vim-lucius'
|
||||||
Plug 'jonathanfilip/vim-lucius'
|
" some good true color themes
|
||||||
Plug 'chriskempson/base16-vim'
|
"Plug 'cocopon/iceberg.vim'
|
||||||
|
"Plug 'KeitaNakamura/neodark.vim'
|
||||||
|
"Plug 'chriskempson/base16-vim'
|
||||||
|
|
||||||
" syntax highlight plugins
|
" syntax highlight plugins
|
||||||
Plug 'neilhwatson/vim_cf3'
|
Plug 'neilhwatson/vim_cf3'
|
||||||
|
@ -175,19 +176,24 @@ if v:version >= 700
|
||||||
set guicursor+=r:hor1-Cursor/lCursor "underline for replace
|
set guicursor+=r:hor1-Cursor/lCursor "underline for replace
|
||||||
set guicursor+=a:blinkon0 "and none of them should blink
|
set guicursor+=a:blinkon0 "and none of them should blink
|
||||||
set guiheadroom=0
|
set guiheadroom=0
|
||||||
colorscheme iceberg
|
colorscheme solarized8_light
|
||||||
map <S-Insert> <MiddleMouse>
|
map <S-Insert> <MiddleMouse>
|
||||||
map! <S-Insert> <MiddleMouse>
|
map! <S-Insert> <MiddleMouse>
|
||||||
elseif (has("nvim") || v:version >= 800) && $TERM != 'screen'
|
" if true color support and I want to use it:
|
||||||
" fix tmux and st
|
"elseif (has("nvim") || v:version >= 800) && $TERM != 'screen'
|
||||||
set t_8f=[38;2;%lu;%lu;%lum
|
" " fix tmux and st
|
||||||
set t_8b=[48;2;%lu;%lu;%lum
|
" set t_8f=[38;2;%lu;%lu;%lum
|
||||||
set termguicolors
|
" set t_8b=[48;2;%lu;%lu;%lum
|
||||||
set mouse=a
|
" set termguicolors
|
||||||
let g:airline_theme='neodark'
|
" set mouse=a
|
||||||
colorscheme iceberg
|
" let g:airline_theme='neodark'
|
||||||
|
" colorscheme iceberg
|
||||||
else
|
else
|
||||||
set mouse=
|
if $TERM != 'screen'
|
||||||
|
set mouse=a
|
||||||
|
else
|
||||||
|
set mouse=
|
||||||
|
endif
|
||||||
colorscheme solarized8_light
|
colorscheme solarized8_light
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue