dotwryn/vim/options.vim

22 lines
392 B
VimL
Raw Normal View History

2019-09-26 16:00:03 -06:00
set formatoptions=lj
2020-10-09 16:55:04 -06:00
set number relativenumber
2019-09-26 16:00:03 -06:00
2020-10-09 16:55:04 -06:00
set linebreak breakindent breakindentopt=shift:3
set autoindent smartindent
2020-02-06 09:47:59 -07:00
2020-10-09 16:55:04 -06:00
set timeoutlen=200
2019-09-26 16:00:03 -06:00
set showmatch " -- emit 'beep' when no matching symbol,
set matchtime=0 " -- but don't jump to it.
2020-10-09 16:55:04 -06:00
set t_ZH= t_ZR= " italic start / end characters
set spellfile=$VIM_DIR/en.utf-8.add spelllang=en
set encoding=utf-8
let &t_co=256