Another rewrite

This commit is contained in:
2026-02-25 21:18:46 +01:00
parent e844f636f1
commit 0c2e0ef2ec
+7 -10
View File
@@ -5,18 +5,15 @@
flakeRoot,
...
}:
let
repoZshConf = flakeRoot + "/assets/conf/dev/terminal/zsh.conf";
in
{
programs.zsh = {
enable = true;
syntaxHighlighting.enable = true;
autosuggestions.enable = true;
enableCompletion = true;
autocd = true;
dotDir = config.home.homeDirectory;
# ---- Oh My Zsh ----
# Optional but recommended: keep zsh config in one dir (relative to $HOME)
dotDir = ".config/zsh";
oh-my-zsh = {
enable = true;
theme = "";
@@ -29,10 +26,10 @@ in
"history"
"docker"
"kubectl"
# IMPORTANT: these should be last
"zsh-autosuggestions"
"zsh-syntax-highlighting"
];
};
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
};
}