Allow custom text width

This commit is contained in:
Thomas Forgione 2023-10-11 10:20:08 +02:00
parent e9efb02aa0
commit a98d1a57e2
1 changed files with 3 additions and 0 deletions

View File

@ -47,6 +47,9 @@ set tabstop=4
set shiftwidth=4
set autoindent
set tw=120
if !empty($NVIM_TEXT_WIDTH)
execute 'set tw=' . $NVIM_TEXT_WIDTH
endif
" }}}
" UI CONFIG #########################################################{{{