From d678217067933967e843d8c6e3b8995e65778fa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Wed, 4 Jun 2025 13:22:22 +0200 Subject: [PATCH] nushell: enable vi mode --- nix/homeModules/common/nushell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/homeModules/common/nushell.nix b/nix/homeModules/common/nushell.nix index 306bb6d9..e3294b49 100644 --- a/nix/homeModules/common/nushell.nix +++ b/nix/homeModules/common/nushell.nix @@ -4,6 +4,7 @@ programs.nushell = { configFile.text = '' $env.config.show_banner = false + $env.config.edit_mode = "vi" ''; }; }