summaryrefslogtreecommitdiff
path: root/use-cases/development/zsh.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2023-09-05 20:38:32 +0200
committerLinnnus <[email protected]>2023-09-05 20:38:32 +0200
commit80006f82905f2567c895cf8737aaf3bf07f9668b (patch)
treeaaacfc4f4327759157429c4b60b6b4a2c659c428 /use-cases/development/zsh.nix
parent7d4ab89f1e6264e124109bf25eafaafdf1aec02a (diff)
Lots of stuff
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";
- };
-}