~chimo/dotfiles

7966955804a4e9f291964933e47897098c558466 — chimo a month ago af980d8
.vimrc: Underline misspelled words.
1 files changed, 6 insertions(+), 1 deletions(-)

M .vimrc/.vimrc
M .vimrc/.vimrc => .vimrc/.vimrc +6 -1
@@ 10,7 10,7 @@ set mouse=""                " disable mouse
set number                  " show line numbers
set shiftwidth=4            " four spaces per indentation level
set smartindent             " have vim figure out when to indent
"set spell spelllang=en_ca  " highlight misspelled words
set spell spelllang=en_ca   " set spellcheck language
set tabstop=4               " four spaces per 'tab' press
set updatetime=100          " lessen delay so git-gutter appears more seamless
                            " Note: also controls the delay before vim writes


@@ 19,3 19,8 @@ set updatetime=100          " lessen delay so git-gutter appears more seamless
syntax on                   " pretty colours (syntax highlighting)

colorscheme solarized

" Underline misspelled words
hi clear SpellBad
hi SpellBad cterm=underline