From afe1aef20b278773102b90508129674decb645e1 Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Tue, 12 Oct 2021 09:16:11 -0500 Subject: [PATCH] Add note about VimR not supporting guifont --- vim/vimrc.d/fonts.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vim/vimrc.d/fonts.vim b/vim/vimrc.d/fonts.vim index 4922ba8..b1d449d 100644 --- a/vim/vimrc.d/fonts.vim +++ b/vim/vimrc.d/fonts.vim @@ -2,6 +2,8 @@ if has("gui_running") || has("gui_vimr") " Set GUI font according to OS if has("gui_macvim") set guifont=SauceCodePro\ Nerd\ Font:h13 + elseif has("gui_vimr") + " vimr has disabled guifont elseif has("gui_gtk2") set guifont=DejaVu\ Sans\ Mono\ 15 endif