Merge branch 'master' of gitosis@majnematic.com:davesdots

This commit is contained in:
dave 2009-04-17 14:44:27 -05:00
commit f0986874cd
2 changed files with 8 additions and 3 deletions

1
gvimrc
View file

@ -10,3 +10,4 @@ set guioptions-=R " Disable the (right) scrollbar
set guioptions-=r " Disable the (right) scrollbar set guioptions-=r " Disable the (right) scrollbar
set guioptions-=l " Disable the (left) scrollbar set guioptions-=l " Disable the (left) scrollbar
set guioptions-=L " Disable the (left) scrollbar set guioptions-=L " Disable the (left) scrollbar
set guioptions-=a " Share the copy buffer with visual mode

10
vimrc
View file

@ -97,11 +97,15 @@ if (v:version >= 700)
imap <silent> <F10> <C-O>:silent set spell!<CR> imap <silent> <F10> <C-O>:silent set spell!<CR>
endif endif
" Always display a pretty statusline " Display a pretty statusline if we can
set title if has('title')
set title
endif
set laststatus=2 set laststatus=2
set shortmess=atI set shortmess=atI
set statusline=Editing:\ %r%t%m\ %=Location:\ Line\ %l/%L\ \ Col:\ %c\ (%p%%) if has('statusline')
set statusline=Editing:\ %r%t%m\ %=Location:\ Line\ %l/%L\ \ Col:\ %c\ (%p%%)
endif
" Enable modelines only on secure vim " Enable modelines only on secure vim
if (v:version == 603 && has("patch045")) || (v:version > 603) if (v:version == 603 && has("patch045")) || (v:version > 603)