1
0
Fork 0

fix trap printing to stdout and support a new feature in vim 8 (as well as fix dependency for an older feature)

This commit is contained in:
Von Random 2016-09-30 14:39:57 +03:00
parent 72e7d4eea6
commit fedbc3dcfc
2 changed files with 6 additions and 2 deletions

6
vimrc
View file

@ -20,7 +20,7 @@ set noerrorbells visualbell t_vb=
" indentation_RIP
"set shiftwidth=3 tabstop=3 noexpandtab
" indentation_OK
set tabstop=3 softtabstop=4 shiftwidth=4 colorcolumn=81 smarttab expandtab
set tabstop=3 softtabstop=4 shiftwidth=4 smarttab expandtab
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
@ -60,9 +60,13 @@ nnoremap L $
" still have to deal with old vim versions :<
if v:version >= 700
if v:version >= 703
set colorcolumn=80
set relativenumber
nnoremap <Leader>r :setlocal relativenumber!<CR>
endif
if v:version >= 800
set breakindent
endif
set helplang=en
set list