rewritten zsh (dendritic)

This commit is contained in:
2026-03-07 23:10:09 +01:00
parent 0e925041e5
commit 73ff78f694
@@ -6,26 +6,28 @@
...
}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix
oh-my-zsh = {
home-manager.users.${user.username} = {
programs.zsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
enableCompletion = true;
dotDir = "${config.xdg.configHome}/zsh"; # Now correct: inside Home Manager scope
oh-my-zsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
];
};
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
zshoptions = [ "AUTO_CD" ];
};
#autosuggestion.enable = true;
syntaxHighlighting.enable = true;
zshoptions = [ "AUTO_CD" ];
};
}