Compare commits
3 Commits
326f12746e
...
73ff78f694
| Author | SHA1 | Date | |
|---|---|---|---|
| 73ff78f694 | |||
| 0e925041e5 | |||
| 52a73cfdf7 |
@@ -2,29 +2,32 @@
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
user,
|
||||
...
|
||||
}:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
#autocd = true;
|
||||
dotDir = "${config.xdg.configHome}/zsh";
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user