Attempting to eliminate the need for ~/.vimrc and ~/.gvimrc

master
Dustin C. Hatch 2011-12-15 11:07:15 -06:00
parent d383b7f11d
commit 348005d07a
2 changed files with 8 additions and 7 deletions

7
gvimrc
View File

@ -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

View File

@ -16,3 +16,11 @@ colorscheme torte
inoremap jj <esc><right> inoremap jj <esc><right>
" Shift+Tab to un-indent " Shift+Tab to un-indent
inoremap <S-TAB> <C-D> inoremap <S-TAB> <C-D>
if has('gui_running')
colorscheme wombat
endif
autocmd GUIEnter * set lines=60 columns=169
set guifont=Luxi\ Mono\ 10