dotwryn/vim/options.vim

23 lines
414 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.
set tabpagemax=20
2020-10-09 22:55:04 +00:00
set t_ZH= t_ZR= " italic start / end characters
2021-02-25 00:38:02 +00:00
set spellfile=$WRYNVIMPATH/en.utf-8.add spelllang=en
2020-10-09 22:55:04 +00:00
set encoding=utf-8
let &t_co=256