summaryrefslogtreecommitdiff
path: root/use-cases/development/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'use-cases/development/zsh.nix')
-rw-r--r--use-cases/development/zsh.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/use-cases/development/zsh.nix b/use-cases/development/zsh.nix
deleted file mode 100644
index 4db241d..0000000
--- a/use-cases/development/zsh.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ 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";
- };
-}