From 348005d07a04625267e94db817e0a0c68434f443 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Thu, 15 Dec 2011 11:07:15 -0600 Subject: [PATCH] Attempting to eliminate the need for ~/.vimrc and ~/.gvimrc --- gvimrc | 7 ------- vimrc => plugin/00-dustin.vim | 8 ++++++++ 2 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 gvimrc rename vimrc => plugin/00-dustin.vim (80%) diff --git a/gvimrc b/gvimrc deleted file mode 100644 index c572937..0000000 --- a/gvimrc +++ /dev/null @@ -1,7 +0,0 @@ -" Nice window size for side-by-side editors -set lines=60 columns=169 -" Cool, dark theme from -" http://dengmao.wordpress.com/2007/01/22/vim-color-scheme-wombat/ -colorscheme wombat -" Nice font and size (escape spaces) -set guifont=Luxi\ Mono\ 10 diff --git a/vimrc b/plugin/00-dustin.vim similarity index 80% rename from vimrc rename to plugin/00-dustin.vim index cca23e0..2126688 100644 --- a/vimrc +++ b/plugin/00-dustin.vim @@ -16,3 +16,11 @@ colorscheme torte inoremap jj " Shift+Tab to un-indent inoremap + +if has('gui_running') + colorscheme wombat +endif + +autocmd GUIEnter * set lines=60 columns=169 + +set guifont=Luxi\ Mono\ 10