1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00
dotfiles-local/vimrc.local

20 lines
422 B
Plaintext

" Display extra whitespace
set list listchars=tab:»·,trail:·
" Map ctrl-a to redraw
nnoremap <C-a> :redraw!<CR>
" Set Scroll off
set scrolloff=12
" Set backspace for consistent behaviour
set backspace=indent,eol
" Tell Vim we're on a 256 color terminal
if $TERM == "xterm-256color" || $TERM == "screen-256color" || $COLORTERM == "gnome-terminal"
set t_Co=256
endif
" Extend plugins
source $HOME/.vim/vimrc.d.vim