diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-28 18:49:48 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-28 18:49:48 +0200 |
commit | 1b538472a05f11ea21ac63f67eead4e5d7ec3ec3 (patch) | |
tree | 332ff835af74622a10678e317e3bd58d7913dd88 /modules/by-name/zs/zsh/module.nix | |
parent | pkgs/yt: 1.7.0 -> 1.7.1 (diff) | |
download | nixos-config-1b538472a05f11ea21ac63f67eead4e5d7ec3ec3.zip |
modules/zsh: Remove the insulting command not found handler
It is fun, but not worth the extra complexity.
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/zs/zsh/module.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/modules/by-name/zs/zsh/module.nix b/modules/by-name/zs/zsh/module.nix index bf7e2a71..644854a2 100644 --- a/modules/by-name/zs/zsh/module.nix +++ b/modules/by-name/zs/zsh/module.nix @@ -10,8 +10,6 @@ { config, lib, - system, - pkgs, ... }: let cfg = config.soispha.programs.zsh; @@ -111,10 +109,7 @@ in { + sourceFile ./plugins/zsh-history-substring-search.zsh ); end = lib.modules.mkAfter ( - # NOTE(@bpeetz): Put this here, so that command handler in `extraFiles` - # are not overriding this. <2025-05-16> - sourceFile ./config/command_not_found/command_not_found_insult.sh - + sourceFile ./config/keymaps_start.zsh + sourceFile ./config/keymaps_start.zsh + sourceFile ./config/keymaps/command.zsh + sourceFile ./config/keymaps/emacs.zsh + sourceFile ./config/keymaps/isearch.zsh |