From e1a748f592682708e3c2a260e54820bceb1dbb68 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Fri, 2 Aug 2019 23:28:22 -0400 Subject: [PATCH] gvim: update fonts for Linux gvim I rarely use this these days, but I wanted to check it in anyways because of the odd backslash behavior I had to google to figure out :) Terminal Vim is superior, but I do get GUI's trying to open a text editor every once in a while... --- vim/gvimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/gvimrc b/vim/gvimrc index 0c08869..b8ec952 100644 --- a/vim/gvimrc +++ b/vim/gvimrc @@ -13,8 +13,10 @@ set guicursor=a:blinkon0 " Don't blink the cursor (not my thang) " Font that doesn't hurt my eyes at a size depending on the screen if has('gui_macvim') set guifont=Inconsolata:h15 -else +elseif has('win32') || has('win64') set guifont=Consolas:h11 +else + set guifont=Inconsolata\ 14 end " Bigger size on startup -- libgit2 0.28.4