diff options
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/cfg.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim index b11cdce..3fb0433 100644 --- a/after/plugin/cfg.vim +++ b/after/plugin/cfg.vim @@ -15,6 +15,8 @@ set guioptions-=L set gfn=Fira\ Code:h12 set noshowmode -set formatoptions+=a - -colorscheme vacme +if has('gui_running') + colorscheme dim +else + colorscheme monochrome +endif |