From d20dc7dc2fe089b06f33824954ad6a5fb2e1c0d9 Mon Sep 17 00:00:00 2001 From: Nicolas Goudry Date: Thu, 6 Jun 2024 08:07:33 +0200 Subject: [PATCH] feat(config): enable linebreak and disable modes in cmdline --- config/options.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/options.nix b/config/options.nix index 8cf9e35..02c42e8 100644 --- a/config/options.nix +++ b/config/options.nix @@ -39,6 +39,9 @@ # Global statusline laststatus = 3; + # Wrap lines at 'breakat' + linebreak = true; + # Enable list mode list = true; @@ -68,6 +71,9 @@ # Number of spaces to use for indentation shiftwidth = 2; + # Disable showing modes in command line + showmode = false; + # Always show tabline showtabline = 2;