diff options
author | Matthew Wozniak <sirtomato999@gmail.com> | 2024-02-14 15:46:00 -0500 |
---|---|---|
committer | Matthew Wozniak <sirtomato999@gmail.com> | 2024-02-14 15:46:00 -0500 |
commit | b15f41338b417ef429c8c50f84be40317dc074c2 (patch) | |
tree | b8ba5775b387d7cb3ec715186f4a8e661684acbc /after | |
parent | 31c7bc5258d7323658e60cb5400d5f3457fff74f (diff) | |
download | nvim-b15f41338b417ef429c8c50f84be40317dc074c2.tar.gz nvim-b15f41338b417ef429c8c50f84be40317dc074c2.zip |
integrals
Diffstat (limited to 'after')
-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 |