summaryrefslogtreecommitdiff
path: root/users/seth/shell/zsh
diff options
context:
space:
mode:
authorseth <[email protected]>2023-02-20 03:43:04 -0500
committerseth <[email protected]>2023-02-20 03:43:04 -0500
commit9a64ab70ea3276cf4470b6a23eaca81980f3a071 (patch)
tree1dc5031213760266e6ab31b275990e452828e0e4 /users/seth/shell/zsh
parent0957b051ef4befd86ce97deef04f5095bea9543b (diff)
switch back to zsh + fix some issues
i miss fish but it's being weird :/
Diffstat (limited to 'users/seth/shell/zsh')
-rw-r--r--users/seth/shell/zsh/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/seth/shell/zsh/default.nix b/users/seth/shell/zsh/default.nix
index eb9145a..0b5a5dd 100644
--- a/users/seth/shell/zsh/default.nix
+++ b/users/seth/shell/zsh/default.nix
@@ -3,9 +3,8 @@
, ...
}: {
programs.zsh = {
- enable = false;
+ enable = true;
enableAutosuggestions = true;
- enableSyntaxHighlighting = true;
enableVteIntegration = true;
completionInit = ''
autoload -Uz bashcompinit compinit
@@ -90,5 +89,6 @@
# file = ".p10k.zsh";
# }
];
+ enableSyntaxHighlighting = true;
};
}