aboutsummaryrefslogtreecommitdiff
path: root/user/home/zsh/default.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-17 16:21:33 -0400
committerRosa <rosaontheweb@proton.me>2026-03-17 16:21:33 -0400
commitce19b701046c064a1eb39098d8537b2c4964a86e (patch)
tree8c42a1392d36132803a2ee4ecb4d2c9150f72296 /user/home/zsh/default.nix
parent8848e53815fe12ffa3998c0a4bbcf2178d6b00e8 (diff)
start rewrite
Diffstat (limited to 'user/home/zsh/default.nix')
-rw-r--r--user/home/zsh/default.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/user/home/zsh/default.nix b/user/home/zsh/default.nix
deleted file mode 100644
index 2c9a7d5..0000000
--- a/user/home/zsh/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ config, ... }:
-{
- programs.direnv.enable = true;
- programs.zsh = {
- enable = true;
- autocd = true;
- autosuggestion.enable = true;
- defaultKeymap = "viins";
- history.ignoreAllDups = true;
- initContent = ''
- PS1="%F{1}%n %B%5~%b %F{8}%# %f"
- '';
-
- loginExtra =
- if (config.desktop.windowManager == "sway") then builtins.readFile ./zlogin.zsh else "";
- syntaxHighlighting.enable = true;
- };
-}