Working on zsh

This commit is contained in:
2026-03-07 23:07:58 +01:00
parent 326f12746e
commit 52a73cfdf7
@@ -2,14 +2,14 @@
config,
pkgs,
lib,
user,
...
}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
#autocd = true;
dotDir = "${config.xdg.configHome}/zsh";
dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix
oh-my-zsh = {
enable = true;
theme = "";
@@ -26,5 +26,6 @@
};
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
zshoptions = [ "AUTO_CD" ];
};
}