From: Penny Leach <penny@mjollnir.org>
Date: Fri, 6 Jul 2012 20:20:55 +0000 (+0200)
Subject: changed supertab path to ~/.vim and set up some gvim stuff
X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;p=dotfiles%2Fvim.git

changed supertab path to ~/.vim and set up some gvim stuff
---

diff --git a/.vim/ftplugin/mail.vim b/.vim/ftplugin/mail.vim
index 1f0fe55..8e801e5 100644
--- a/.vim/ftplugin/mail.vim
+++ b/.vim/ftplugin/mail.vim
@@ -1,6 +1,6 @@
 let g:mail_alias_source = "Abook"
 let g:SuperTabDefaultCompletionType = "<C-X><C-U>"
-source /usr/share/vim-scripts/plugin/supertab.vim
+source ~/.vim/plugin/supertab.vim
 match
 
 fun! LBDBCompleteFn(findstart, base)
diff --git a/.vimrc b/.vimrc
index 02e55a8..eccd0a1 100644
--- a/.vimrc
+++ b/.vimrc
@@ -6,9 +6,13 @@ set hidden
 
 " A nice colourscheme for dark background
 " colorscheme torte
-let g:impact_transbg=1
+"let g:impact_transbg=1
 let g:patchreview_tmpdir='/tmp'
-source ~/.vimcolor
+if has('gui_running')
+    colorscheme zenburn
+else
+    source ~/.vimcolor
+endif
 
 " A nice colourscheme (the default) for light background
 " colorscheme default
@@ -21,8 +25,8 @@ set showmatch
 source $VIMRUNTIME/macros/matchit.vim
 
 " Set up gvim for UTF-8
-set guifont=Bitstream\ Vera\ Sans\ Mono\ 9
-set guifontwide=-misc-fixed-medium-r-normal-*-18-120-100-100-c-180-iso10646-1
+"set guifont=Bitstream\ Vera\ Sans\ Mono\ 9
+"set guifontwide=-misc-fixed-medium-r-normal-*-18-120-100-100-c-180-iso10646-1
 set guioptions-=T
 set encoding=utf-8