From eb40e0ddb6f2b306cce645730e38d9986c7b79cd Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 24 May 2024 01:02:14 +0300 Subject: [PATCH] neovim: change textwidth in line-limiter it should be less than colorcolumn by 1 --- neovim/dev.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/dev.nix b/neovim/dev.nix index 82ae95c..d96b1d2 100644 --- a/neovim/dev.nix +++ b/neovim/dev.nix @@ -11,7 +11,7 @@ let inherit pattern; opt = { colorcolumn = toString limit; - textwidth = limit; + textwidth = limit - 1; }; }; in