diff --git a/home/.vim/colors/jinx.vim b/home/.vim/colors/jinx.vim index 86c0e332..6989e07e 100644 --- a/home/.vim/colors/jinx.vim +++ b/home/.vim/colors/jinx.vim @@ -52,7 +52,7 @@ let s:jinx.tabsel_bgr = ['#8DBC8D', 108] if exists('g:jinx_colors') && g:jinx_colors =~? 'day' set background=light let s:jinx.fgr = ['#494949', 238] - let s:jinx.bgr = ['#E1E1E1', 254] + let s:jinx.bgr = ['#E1E1E1', 255] let s:jinx.line = ['#D0D0D0', 252] let s:jinx.select = ['#D0D0D0', 252] let s:jinx.folded = ['#B2B2B2', 249] @@ -67,7 +67,7 @@ if exists('g:jinx_colors') && g:jinx_colors =~? 'day' let s:jinx.orange = ['#E0914C', 172] else set background=dark - let s:jinx.fgr = ['#E1E1E1', 253] + let s:jinx.fgr = ['#E1E1E1', 255] let s:jinx.bgr = ['#1c2023', 234] let s:jinx.line = ['#2c3135', 67] let s:jinx.select = ['#2c3135', 67] diff --git a/home/.vimrc b/home/.vimrc index 08114e81..efe3bc0f 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -39,8 +39,8 @@ syntax enable if has('termguicolors') && $DISPLAY !=? '' && &t_Co == 256 set termguicolors " true colors in the terminal + let g:jinx_colors = 'night' " night or day, 'T' to change on the fly try - let g:jinx_colors = 'night' " night or day, 'T' to change on the fly colorscheme jinx catch colorscheme evening @@ -52,11 +52,7 @@ if has('termguicolors') && $DISPLAY !=? '' && &t_Co == 256 let &term = 'xterm-256color' endif else - try - colorscheme jinx - catch - colorscheme evening - endtry + colorscheme slate endif " change cursor shape for different editing modes, neovim does this by default