diff --git a/init.vim b/init.vim index 1f7b0c8..3c26931 100644 --- a/init.vim +++ b/init.vim @@ -109,12 +109,12 @@ set guioptions-=m set mouse=nv -set gfn=DejaVu\ Sans\ Mono\ for\ Powerline:h13 +set gfn=FiraCode\ Nerd\ Font\ Mono:h12 " from https://stackoverflow.com/a/51424640 let s:fontsize = 14 function! AdjustFontSize(amount) let s:fontsize = s:fontsize+a:amount - :execute "set gfn=DejaVu\\ Sans\\ Mono\\ for\\ Powerline:h" . s:fontsize + :execute "set gfn=FiraCode\\ Nerd\\ Font\\ Mono:h" . s:fontsize endfunction noremap :call AdjustFontSize(1)