diff options
| author | Robert Günzler <r@gnzler.io> | 2021-05-31 16:51:38 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-05-31 16:56:02 +0200 |
| commit | 432ee98837b67007a950355cca2e4a23541b59a1 (patch) | |
| tree | 58c1c9cb47c3eaf6a7c32f763b3b3e24834ce841 /.vim/init.lua | |
| parent | 51570e71160c628a8d9477507e0e48dff8a7a9cd (diff) | |
vim: disable the 'textwidth' experiment
Diffstat (limited to '')
| -rw-r--r-- | .vim/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.vim/init.lua b/.vim/init.lua index 60d7e04..7d2e176 100644 --- a/.vim/init.lua +++ b/.vim/init.lua @@ -30,8 +30,8 @@ u.opt('w', 'wrap', true) u.opt('o', 'scrolloff', 3) cmd('set listchars+=trail:¬') u.opt('o', 'showbreak', '↪ ') -u.opt('b', 'textwidth', 80) -- TODO see if this is annoying -u.opt('w', 'colorcolumn', '+1') -- depends on 'textwidth' +u.opt('b', 'textwidth', 0) +u.opt('w', 'colorcolumn', '80') -- depends on 'textwidth' u.opt('w', 'foldenable', true) u.opt('w', 'foldlevel', 0) u.opt('w', 'foldmethod', 'marker') |