diff options
| author | jdhao <jdhao@hotmail.com> | 2020-09-26 09:15:40 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-09-26 09:15:40 +0800 |
| commit | b65c7c6d702ba0371e917066b55a58cf14f2d1bb (patch) | |
| tree | 801a9cab3e33120ee8a7781c1ccb28522b59b269 /ui.vim | |
| parent | c248ab02d40249479ca5c0f75ae580e5f2074239 (diff) | |
change vim script style from 4-space indent to 2-space
Diffstat (limited to 'ui.vim')
| -rw-r--r-- | ui.vim | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -5,7 +5,7 @@ " colors, see https://github.com/termstandard/colors and " https://gist.github.com/XVilka/8346728. if $TERM ==# 'xterm-256color' || exists('g:started_by_firenvim') - set termguicolors + set termguicolors endif " Use dark background set background=dark @@ -16,15 +16,15 @@ set background=dark " 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://github.com/morhetz/gruvbox/wiki/Terminal-specific#1-italics-is-disabled - 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 + " Italic options should be put before colorscheme setting, + " see https://github.com/morhetz/gruvbox/wiki/Terminal-specific#1-italics-is-disabled + 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 + colorscheme desert endif """"""""""""""""""""""""""" deus settings""""""""""""""""""""""""""""""""" |
