Adding version depending stuff to vimrc for my old vim at work

master
Dustin Swan 13 years ago
parent bcc8bcc170
commit c7398479c7

35
vimrc

@ -15,9 +15,11 @@ set history=1000
" turn off swapfiles " turn off swapfiles
set noswapfile set noswapfile
" persistent undo (>7.3) " persistent undo
set undodir=~/.vim/undodir if v:version > 703
set undofile set undodir=~/.vim/undodir
set undofile
endif
" line numbers " line numbers
set nu set nu
@ -27,7 +29,7 @@ set wildmenu
set wildmode=longest:full set wildmode=longest:full
" show the command as it is typed " show the command as it is typed
" set sc set sc
" remap the leader to ,. hate doing this but \ is so far away " remap the leader to ,. hate doing this but \ is so far away
let mapleader = "," let mapleader = ","
@ -54,7 +56,6 @@ set shiftwidth=4
set mat=2 set mat=2
set ruler set ruler
set nohls
" so we get html goodies in php files " so we get html goodies in php files
au BufRead *.php set ft=php.html au BufRead *.php set ft=php.html
@ -88,7 +89,9 @@ endif
set statusline= set statusline=
set statusline+=%f\ %2*%m\ %1*%h set statusline+=%f\ %2*%m\ %1*%h
set statusline+=%#warningmsg# set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()} if v:version > 700
set statusline+=%{SyntasticStatuslineFlag()}
endif
set statusline+=%{fugitive#statusline()} set statusline+=%{fugitive#statusline()}
set statusline+=%* set statusline+=%*
set statusline+=%r%=[%{&encoding}\ %{&fileformat}\ %{strlen(&ft)?&ft:'none'}] set statusline+=%r%=[%{&encoding}\ %{&fileformat}\ %{strlen(&ft)?&ft:'none'}]
@ -96,8 +99,12 @@ set statusline+=%15.(%c:%l/%L%)\ %P
set laststatus=2 set laststatus=2
" Syntastic " Syntastic
let g:syntastic_enable_signs=1 if v:version > 700
let g:syntastic_auto_loc_list=1 let g:syntastic_enable_signs=1
let g:syntastic_auto_loc_list=1
else
let g:loaded_syntastic_plugin = 1
endif
" Highlight current line " Highlight current line
set cursorline set cursorline
@ -107,15 +114,11 @@ if version > 702
set colorcolumn=80 set colorcolumn=80
endif endif
" quickly move between splits
" nnoremap <silent> <c-h> <c-w>h
" nnoremap <silent> <c-l> <c-w>l
" nnoremap <silent> <c-j> <c-w>j
" nnoremap <silent> <c-k> <c-w>k
" pretty line endings and trailing spaces " pretty line endings and trailing spaces
set list listchars=tab:»·,trail,eol:↪ set list listchars=tab:»·,trail,eol:↪
" set list listchars=tab:»·,trail:·,eol:·
" fine I give up " fine I'll try it
inoremap jk <Esc> inoremap jk <Esc>
inoremap kj <Esc>
" stop hitting Esc or c-[!
inoremap <Esc> <nop>

Loading…
Cancel
Save