zsh: disable "command not found" corrections

This commit is contained in:
2023-06-27 22:40:27 +00:00
parent c1df32695b
commit b43b8a3a22
2 changed files with 2 additions and 3 deletions

View File

@@ -55,7 +55,6 @@
- `sane.persist`: auto-create parent dirs in ~/private - `sane.persist`: auto-create parent dirs in ~/private
- currently if the application doesn't autocreate dirs leading to its destination, then ~/private storage fails - currently if the application doesn't autocreate dirs leading to its destination, then ~/private storage fails
- this might be why librewolf on mobile is still amnesiac - this might be why librewolf on mobile is still amnesiac
- zsh: disable "command not found" corrections
- sane-bt-search: show details like 5.1 vs stereo, h264 vs h265 - sane-bt-search: show details like 5.1 vs stereo, h264 vs h265
### perf ### perf

View File

@@ -159,8 +159,8 @@ in
}; };
# enable a command-not-found hook to show nix packages that might provide the binary typed. # enable a command-not-found hook to show nix packages that might provide the binary typed.
programs.nix-index.enable = true; # programs.nix-index.enable = true;
programs.command-not-found.enable = false; #< mutually exclusive with nix-index # programs.command-not-found.enable = false; #< mutually exclusive with nix-index
}) })
]; ];
} }