neovim: change textwidth in line-limiter

it should be less than colorcolumn by 1
This commit is contained in:
Dmitriy Pleshevskiy 2024-05-24 01:02:14 +03:00
parent 40ff58434d
commit eb40e0ddb6
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -11,7 +11,7 @@ let
inherit pattern; inherit pattern;
opt = { opt = {
colorcolumn = toString limit; colorcolumn = toString limit;
textwidth = limit; textwidth = limit - 1;
}; };
}; };
in in