From 43261954c2226dd9fafb916f4fd95a2201566ac0 Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Sun, 26 Jan 2025 17:59:15 +0100 Subject: [PATCH] disable command_not_found --- modules/basic-tools/fish.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/basic-tools/fish.nix b/modules/basic-tools/fish.nix index d958060..0d0adb9 100644 --- a/modules/basic-tools/fish.nix +++ b/modules/basic-tools/fish.nix @@ -14,7 +14,8 @@ enable = true; interactiveShellInit = '' set fish_greeting - set fish_command_not_found + function fish_command_not_found + end ''; shellAliases = { ls = "lsd --icon=never";