summaryrefslogtreecommitdiff
path: root/modules/basic-tools/fish.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-01-26 17:59:15 +0100
committerGrisha Shipunov2025-01-26 17:59:15 +0100
commit43261954c2226dd9fafb916f4fd95a2201566ac0 (patch)
tree7f63c344269456363c053ab6354e0d11d1e81956 /modules/basic-tools/fish.nix
parent66c00cdcdaf5bf3449e88448a50770ac00ade7c0 (diff)
disable command_not_found
Diffstat (limited to 'modules/basic-tools/fish.nix')
-rw-r--r--modules/basic-tools/fish.nix3
1 files changed, 2 insertions, 1 deletions
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";