From 75b6f01f2e5f539589ee5ac5f6868db1c1c6deab Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Thu, 17 Dec 2015 22:04:00 +0100 Subject: [PATCH] vim gui options --- vim/vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/vimrc b/vim/vimrc index eae5fac..026f7ad 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -157,6 +157,9 @@ set tags+=~/.vim/systags set relativenumber set number +" gvim without toolbar +set guioptions-=T + """ Return to last edit position when opening files {{{ augroup LastPosition autocmd! BufReadPost * @@ -165,6 +168,8 @@ augroup LastPosition \ endif augroup END + + " Keep undo history across sessions by storing it in a file let vimDir = '$HOME/.vim' if has('persistent_undo')