dotwryn/vim/options.vim

22 lines
392 B
VimL
Raw Normal View History

2019-09-26 22:00:03 +00:00
set formatoptions=lj
2020-10-09 22:55:04 +00:00
set number relativenumber
2019-09-26 22:00:03 +00:00
2020-10-09 22:55:04 +00:00
set linebreak breakindent breakindentopt=shift:3
set autoindent smartindent
2020-02-06 16:47:59 +00:00
2020-10-09 22:55:04 +00:00
set timeoutlen=200
2019-09-26 22:00:03 +00:00
set showmatch " -- emit 'beep' when no matching symbol,
set matchtime=0 " -- but don't jump to it.
2020-10-09 22:55:04 +00: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