diff options
author | Linnnus <[email protected]> | 2023-09-05 09:48:04 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-09-05 09:48:04 +0200 |
commit | 7d4ab89f1e6264e124109bf25eafaafdf1aec02a (patch) | |
tree | b6af29bfe66c231b1a71bb05c9df211afe4cf341 /use-cases/development/zsh.nix |
Initial commit
Diffstat (limited to 'use-cases/development/zsh.nix')
-rw-r--r-- | use-cases/development/zsh.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/use-cases/development/zsh.nix b/use-cases/development/zsh.nix new file mode 100644 index 0000000..4db241d --- /dev/null +++ b/use-cases/development/zsh.nix @@ -0,0 +1,14 @@ +{ pkgs, config, ... }: + +{ + programs.zsh = { + enable = true; + + defaultKeymap = "viins"; + + # Feeble attempt at cleaning up home directory. + # TODO: dotDir = (pathRelativeTo config.xdg.configHome config.home) + "/zsh"; + dotDir = ".config/zsh"; + history.path = config.xdg.cacheHome + "/zsh/history"; + }; +} |