diff options
author | Matthew Wozniak <matt@woz.blue> | 2024-01-01 00:25:14 -0500 |
---|---|---|
committer | Matthew Wozniak <matt@woz.blue> | 2024-01-01 00:25:14 -0500 |
commit | 1cc2576d1c0318d1098c3bebe6548aeff2773764 (patch) | |
tree | f243c10582460626e023dc3c63397cc420778ec6 /after | |
parent | 173fa5ba4709a5c79325b40c403d5ce4078bb7d4 (diff) | |
download | nvim-1cc2576d1c0318d1098c3bebe6548aeff2773764.tar.gz nvim-1cc2576d1c0318d1098c3bebe6548aeff2773764.zip |
nerd guifont, gvim don't remove bg color
Diffstat (limited to 'after')
-rw-r--r-- | after/plugin/cfg.vim | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/after/plugin/cfg.vim b/after/plugin/cfg.vim index f21e1ad..78a0146 100644 --- a/after/plugin/cfg.vim +++ b/after/plugin/cfg.vim @@ -1,6 +1,6 @@ let g:mapleader = ' ' set number -set ff=unix ffs=unix,dos +set ff=unix set sw=4 ts=4 noet tw=80 cc=80 set spr sb set pb=12 winbl=12 @@ -13,8 +13,11 @@ set guioptions-=r set guioptions-=R set guioptions-=l set guioptions-=L -set gfn=DejaVu\ Sans\ Mono:h12 +set gfn=DejaVuSansM\ Nerd\ Font\ Mono:h12 set noshowmode colorscheme seoul256 -hi Normal guibg=NONE ctermbg=NONE + +if !has('gui_running') + hi Normal guibg=NONE ctermbg=NONE +endif |