From 738ae7d09250f2776d7722cfbae2091f36d689f2 Mon Sep 17 00:00:00 2001 From: Jordan MacDonald Date: Fri, 9 Feb 2024 20:53:42 -0500 Subject: [PATCH] Remove vi mode shell hook Direnv allows use of native shell, so customizing this environment is no longer required. --- shell.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/shell.nix b/shell.nix index 720b6bb6..38f41210 100644 --- a/shell.nix +++ b/shell.nix @@ -11,9 +11,4 @@ pkgs.mkShell { ]; RUST_BACKTRACE = 1; - - shellHook = '' - # Vi mode - set -o vi - ''; }