From 47a94d20aa321f61ba59fd84de275eb2fe4e683d Mon Sep 17 00:00:00 2001 From: fleaz Date: Thu, 7 Sep 2023 18:09:02 +0200 Subject: [PATCH] modules/neovim: set nowrap and install conflict-marker plugin --- home-manager/modules/neovim.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home-manager/modules/neovim.nix b/home-manager/modules/neovim.nix index aa6a003..0cd8cce 100644 --- a/home-manager/modules/neovim.nix +++ b/home-manager/modules/neovim.nix @@ -57,6 +57,8 @@ vim-terraform goyo-vim + + conflict-marker-vim ]; extraConfig = '' set nocompatible @@ -78,6 +80,7 @@ set smartcase set colorcolumn=120 set textwidth=120 + set nowrap " Autosave when focus is lost :au FocusLost * :wa