Check for linebreak feature

This commit is contained in:
Anthony Rose 2023-02-06 15:34:21 +00:00
parent 7b8c6d4fd3
commit b8dc7c1824

5
vimrc
View file

@ -64,7 +64,6 @@ set autoindent
set autoread set autoread
set background=dark set background=dark
set backspace=indent,eol,start set backspace=indent,eol,start
set breakindent
set cmdheight=1 set cmdheight=1
set directory=$TEMP//,/tmp//,. set directory=$TEMP//,/tmp//,.
set display+=lastline set display+=lastline
@ -175,6 +174,10 @@ if has('gui_running')
set lines=43 set lines=43
endif endif
if has('linebreak')
set breakindent
endif
if has('mouse_sgr') if has('mouse_sgr')
set ttymouse=sgr set ttymouse=sgr
end end