From f944dbe5e266649387589a3f65be6ac80c266bcf Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Mon, 31 May 2021 15:32:36 +0300 Subject: [PATCH] [nvim] increase textwidth just a little bit By default it was set to 78. --- nvim/plugin/editing.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/plugin/editing.vim b/nvim/plugin/editing.vim index 5a81cec..11d29c2 100644 --- a/nvim/plugin/editing.vim +++ b/nvim/plugin/editing.vim @@ -60,7 +60,7 @@ set commentstring=//%s " Wrapping {{{ - set nowrap colorcolumn=81,101,121 + set nowrap colorcolumn=81,101,121 textwidth=79 " }}}