neovim: change textwidth in line-limiter
it should be less than colorcolumn by 1
This commit is contained in:
parent
40ff58434d
commit
eb40e0ddb6
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ let
|
||||||
inherit pattern;
|
inherit pattern;
|
||||||
opt = {
|
opt = {
|
||||||
colorcolumn = toString limit;
|
colorcolumn = toString limit;
|
||||||
textwidth = limit;
|
textwidth = limit - 1;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in a new issue