rewritten zsh (dendritic)
This commit is contained in:
@@ -6,26 +6,28 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
programs.zsh = {
|
home-manager.users.${user.username} = {
|
||||||
enable = true;
|
programs.zsh = {
|
||||||
enableCompletion = true;
|
|
||||||
dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix
|
|
||||||
oh-my-zsh = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "";
|
enableCompletion = true;
|
||||||
plugins = [
|
dotDir = "${config.xdg.configHome}/zsh"; # Now correct: inside Home Manager scope
|
||||||
"git"
|
oh-my-zsh = {
|
||||||
"sudo"
|
enable = true;
|
||||||
"extract"
|
theme = "";
|
||||||
"colored-man-pages"
|
plugins = [
|
||||||
"command-not-found"
|
"git"
|
||||||
"history"
|
"sudo"
|
||||||
"docker"
|
"extract"
|
||||||
"kubectl"
|
"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" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user