From ae5df119bf56020d71acd511f78d84ef0060cf9a Mon Sep 17 00:00:00 2001 From: Mahesh Asolkar Date: Sat, 13 Nov 2021 23:38:31 -0800 Subject: [PATCH] Nvim support --- minimal.vimrc.vim | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/minimal.vimrc.vim b/minimal.vimrc.vim index a9aebc0..992a8c6 100644 --- a/minimal.vimrc.vim +++ b/minimal.vimrc.vim @@ -90,12 +90,15 @@ " Base customization {{{ if has("gui_running") - if has("mac") - set guifont=Iosevka-Term:h16 - elseif has("win32") - set guifont=Iosevka\ Term\ Regular\ 13 + if has("nvim") else - set guifont=Iosevka\ Term\ Regular\ 13.5 + if has("mac") + set guifont=Iosevka-Term:h16 + elseif has("win32") + set guifont=Iosevka\ Term\ Regular\ 13 + else + set guifont=Iosevka\ Term\ Regular\ 13.5 + end end set columns=120 lines=54