mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
23 lines
467 B
Plaintext
23 lines
467 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
|
|
|
|
" Use gui terminal colors
|
|
set termguicolors
|
|
|
|
" Extend plugins
|
|
source $HOME/.vim/vimrc.d.vim
|