mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
update theme settings
This commit is contained in:
parent
996e5452bf
commit
86e2c6c5be
39
ui.vim
39
ui.vim
@ -49,6 +49,9 @@ endfunction
|
|||||||
|
|
||||||
function! s:my_theme_dict.badwolf() dict abort
|
function! s:my_theme_dict.badwolf() dict abort
|
||||||
if utils#HasColorscheme('badwolf')
|
if utils#HasColorscheme('badwolf')
|
||||||
|
let g:badwolf_darkgutter = 0
|
||||||
|
" Make the tab line lighter than the background.
|
||||||
|
let g:badwolf_tabline = 2
|
||||||
colorscheme badwolf
|
colorscheme badwolf
|
||||||
else
|
else
|
||||||
colorscheme desert
|
colorscheme desert
|
||||||
@ -73,7 +76,9 @@ endfunction
|
|||||||
|
|
||||||
function! s:my_theme_dict.solarized8() dict abort
|
function! s:my_theme_dict.solarized8() dict abort
|
||||||
if utils#HasColorscheme('solarized8')
|
if utils#HasColorscheme('solarized8')
|
||||||
colorscheme solarized8
|
let g:solarized_term_italics=1
|
||||||
|
let g:solarized_visibility='high'
|
||||||
|
colorscheme solarized8_flat
|
||||||
else
|
else
|
||||||
colorscheme desert
|
colorscheme desert
|
||||||
endif
|
endif
|
||||||
@ -97,6 +102,7 @@ endfunction
|
|||||||
|
|
||||||
function! s:my_theme_dict.vim_one() dict abort
|
function! s:my_theme_dict.vim_one() dict abort
|
||||||
if utils#HasColorscheme('one')
|
if utils#HasColorscheme('one')
|
||||||
|
let g:one_allow_italics = 1
|
||||||
colorscheme one
|
colorscheme one
|
||||||
else
|
else
|
||||||
colorscheme desert
|
colorscheme desert
|
||||||
@ -105,6 +111,9 @@ endfunction
|
|||||||
|
|
||||||
function! s:my_theme_dict.material() dict abort
|
function! s:my_theme_dict.material() dict abort
|
||||||
if utils#HasColorscheme('material')
|
if utils#HasColorscheme('material')
|
||||||
|
let g:material_terminal_italics = 1
|
||||||
|
" theme_style can be 'default', 'dark' or 'palenight'
|
||||||
|
let g:material_theme_style = 'default'
|
||||||
colorscheme material
|
colorscheme material
|
||||||
else
|
else
|
||||||
colorscheme desert
|
colorscheme desert
|
||||||
@ -128,31 +137,7 @@ function! s:my_theme_dict.neodark() dict abort
|
|||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
execute printf('call s:my_theme_dict.%s()', s:theme)
|
" execute printf('call s:my_theme_dict.%s()', s:theme)
|
||||||
|
execute printf('call s:my_theme_dict.%s()', 'material')
|
||||||
""""""""""""""""""""""""""" deus settings"""""""""""""""""""""""""""""""""
|
|
||||||
" colorscheme deus
|
|
||||||
|
|
||||||
""""""""""""""""""""""""""" solarized8 settings"""""""""""""""""""""""""
|
|
||||||
" Solarized colorscheme without bullshit
|
|
||||||
" let g:solarized_term_italics=1
|
|
||||||
" let g:solarized_visibility="high"
|
|
||||||
" colorscheme solarized8_high
|
|
||||||
|
|
||||||
""""""""""""""""""""""""""" vim-one settings"""""""""""""""""""""""""""""
|
|
||||||
" let g:one_allow_italics = 1
|
|
||||||
" colorscheme one
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""material.vim settings""""""""""""""""""""""""""
|
|
||||||
" let g:material_terminal_italics = 1
|
|
||||||
" " theme_style can be 'default', 'dark' or 'palenight'
|
|
||||||
" let g:material_theme_style = 'dark'
|
|
||||||
" colorscheme material
|
|
||||||
|
|
||||||
""""""""""""""""""""""""""" badwolf settings """""""""""""""""""""""""""""
|
|
||||||
" let g:badwolf_darkgutter = 0
|
|
||||||
" " Make the tab line lighter than the background.
|
|
||||||
" let g:badwolf_tabline = 2
|
|
||||||
" colorscheme badwolf
|
|
||||||
"}}
|
"}}
|
||||||
"}
|
"}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user