From 460ec98052e07bbf16d8143d8f242280662582a6 Mon Sep 17 00:00:00 2001 From: jdhao Date: Thu, 26 Sep 2019 23:18:19 +0800 Subject: Split large nvim config into several files for easier management --- ui.vim | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 ui.vim (limited to 'ui.vim') diff --git a/ui.vim b/ui.vim new file mode 100644 index 0000000..64b5c50 --- /dev/null +++ b/ui.vim @@ -0,0 +1,54 @@ +"{ Colorscheme and highlight settings +"{{ General settings about colors +" Enable true colors support (Do not use this option if your terminal does not +" support true colors! For a comprehensive list of terminals supporting true +" colors, see https://github.com/termstandard/colors and +" https://bit.ly/2InF97t) +set termguicolors + +" Use dark background +set background=dark +"}} + +"{{ Colorscheme settings +""""""""""""""""""""""""""""gruvbox settings""""""""""""""""""""""""""" +" We should check if theme exists before using it, otherwise you will get +" error message when starting Nvim +if utils#HasColorscheme('gruvbox8') + " Italic options should be put before colorscheme setting, + " see https://goo.gl/8nXhcp + let g:gruvbox_italics=1 + let g:gruvbox_italicize_strings=1 + let g:gruvbox_filetype_hi_groups = 0 + let g:gruvbox_plugin_hi_groups = 0 + colorscheme gruvbox8_hard +else + colorscheme desert +endif + +""""""""""""""""""""""""""" 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 +"}} +"} -- cgit v1.2.3