mirror of
https://github.com/lifepillar/vim-solarized8.git
synced 2025-12-17 11:17:05 +00:00
Fix option's name.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
" Maintainer: Lifepillar <lifepillar@lifepillar.me>
|
||||
" Website: https://github.com/lifepillar/vim-solarized8
|
||||
" License: OSI approved MIT license
|
||||
" Last Updated: Sat Oct 28 21:27:06 2017
|
||||
" Last Updated: Sat Oct 28 22:11:13 2017
|
||||
|
||||
if !(has('termguicolors') && &termguicolors) && !has('gui_running')
|
||||
\ && (!exists('&t_Co') || &t_Co < (get(g:, 'solarized_use16', 0) ? 16 : 256))
|
||||
@@ -41,7 +41,7 @@ let g:colors_name = 'solarized8_light_flat'
|
||||
" base2: GUI=#073642/rgb( 7, 54, 66) Term=236 #303030/rgb( 48, 48, 48) [delta=13.434724]
|
||||
|
||||
if get(g:, 'solarized_use16', 1)
|
||||
if !has('gui_running') && get(g:, 'solarized8_light_flat_transp_bg', 0)
|
||||
if !has('gui_running') && get(g:, 'solarized_transp_bg', 0)
|
||||
hi Normal ctermfg=11 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE gui=NONE
|
||||
else
|
||||
hi Normal ctermfg=11 ctermbg=15 guifg=#657b83 guibg=#fdf6e3 guisp=NONE cterm=NONE gui=NONE
|
||||
@@ -395,7 +395,7 @@ let g:terminal_color_2='#859900'
|
||||
endif
|
||||
endif
|
||||
if !get(g:, 'solarized_use16', 1)
|
||||
if !has('gui_running') && get(g:, 'solarized8_light_flat_transp_bg', 0)
|
||||
if !has('gui_running') && get(g:, 'solarized_transp_bg', 0)
|
||||
hi Normal ctermfg=66 ctermbg=NONE guifg=#657b83 guibg=NONE guisp=NONE cterm=NONE gui=NONE
|
||||
else
|
||||
hi Normal ctermfg=66 ctermbg=230 guifg=#657b83 guibg=#fdf6e3 guisp=NONE cterm=NONE gui=NONE
|
||||
|
||||
Reference in New Issue
Block a user