aboutsummaryrefslogtreecommitdiff
path: root/user/home/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'user/home/zsh')
-rw-r--r--user/home/zsh/default.nix18
-rw-r--r--user/home/zsh/zlogin.zsh4
2 files changed, 0 insertions, 22 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;
- };
-}
diff --git a/user/home/zsh/zlogin.zsh b/user/home/zsh/zlogin.zsh
deleted file mode 100644
index 94ce47c..0000000
--- a/user/home/zsh/zlogin.zsh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [[ "$(tty)" == "/dev/tty1" ]]; then
- export XCURSOR_THEME="catppuccin-mocha-dark-cursors"
- exec sway
-fi