2019-09-26 22:00:03 +00:00
|
|
|
set linebreak " automatically wraps text
|
|
|
|
set breakindent " indent for single-line wrap
|
|
|
|
set breakindentopt=shift:3 " indent amount for single-line wrap
|
|
|
|
|
|
|
|
set formatoptions=lj
|
|
|
|
" l = prevents the breaking up of words
|
|
|
|
" j = remove comment leaders when joining lines
|
|
|
|
|
|
|
|
let &t_co=256 " use 256-color
|
|
|
|
|
|
|
|
set number " show line numbers
|
2020-02-06 16:47:59 +00:00
|
|
|
set relativenumber
|
|
|
|
|
2019-09-26 22:00:03 +00:00
|
|
|
set autoindent " match indentation with next line
|
|
|
|
set smartindent " match indentation with syntax
|
|
|
|
|
|
|
|
set spellfile=$VIM_DIR/en.utf-8.add
|
|
|
|
set spelllang=en
|
|
|
|
|
|
|
|
set showmatch " -- emit 'beep' when no matching symbol,
|
|
|
|
set matchtime=0 " -- but don't jump to it.
|
|
|
|
|
|
|
|
set timeoutlen=200 " -- short timeout for multi-key functions
|