1
0
Fork 0

a bit of a cleanup + some fixes

This commit is contained in:
Von Random 2016-12-13 13:33:27 +03:00
parent 25a54216ac
commit d827527595
4 changed files with 4 additions and 8 deletions

4
vimrc
View file

@ -63,12 +63,12 @@ nmap qw :wq<CR>
nmap <Leader>w :w<CR>
" still have to deal with old vim versions :<
if v:version >= 703
if has("nvim") || v:version >= 703
set colorcolumn=80
set relativenumber
nnoremap <Leader>r :setlocal relativenumber!<CR>
endif
if v:version >= 800
if has("nvim") || v:version >= 800
set breakindent
endif