mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
Merge branch 'master' of gitosis@majnematic.com:davesdots
This commit is contained in:
commit
f0986874cd
2 changed files with 8 additions and 3 deletions
1
gvimrc
1
gvimrc
|
@ -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
10
vimrc
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue