dotfiles

$HOME is where the <3 is
git clone git://git.alexkarle.com/dotfiles.git
Log | Files | Refs | Submodules | README

commit c690c1fe5c0231e6d1fea828ef1532f34dea3ca2 (patch)
parent c548e11abcf30a08357a321144c9213dc060373c
Author: Alex Karle <alex@karle.co>
Date:   Wed,  9 Jan 2019 14:02:52 -0500

vim: pilot autoread, change back to Consolas on Windows

1) The Windows gVim "this file has changed" popup is quite workflow
breaking. Piloting autoread (just for gvim)

2) Inconsolata doesn't look great on my Windows monitors... back to
Consolas for now.

Diffstat:
Mvim/gvimrc | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/vim/gvimrc b/vim/gvimrc @@ -14,9 +14,12 @@ set guicursor=a:blinkon0 " Don't blink the cursor (not my thang) if has('gui_macvim') set guifont=Inconsolata:h15 else - set guifont=Inconsolata:h11 + set guifont=Consolas:h11 end " Bigger size on startup set lines=50 set columns=100 + +" The pop-up asking if you want to reload forces mouse usage :O +set autoread