diff options
Diffstat (limited to 'home-manager/soispha/config/zsh/default.nix')
-rw-r--r-- | home-manager/soispha/config/zsh/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home-manager/soispha/config/zsh/default.nix b/home-manager/soispha/config/zsh/default.nix index 01a553d0..11011977 100644 --- a/home-manager/soispha/config/zsh/default.nix +++ b/home-manager/soispha/config/zsh/default.nix @@ -7,9 +7,9 @@ osConfig, ... }: { - # TODO ADD THIS ADDON + # TODO: ADD THIS ADDON # next one only works if your alias is only a command, e.g. if you `alias='cat some_file.txt &2> /dev/null'`, running `cat some_file.txt` won't trigger it. - # TODO find something better for this use case + # TODO: find something better for this use case # zsh-you-should-use # ZSH plugin that reminds you to use existing aliases for commands you just typed home.sessionPath = []; programs.zsh = { @@ -26,7 +26,7 @@ extended = true; ignoreDups = false; expireDuplicatesFirst = false; - ignoreSpace = false; # TODO I might change that + ignoreSpace = false; # TODO: I might change that path = "${config.xdg.dataHome}/zsh/history"; save = 9000000; # number of lines to save |