Compare commits

...

3 Commits

Author SHA1 Message Date
henrov 73ff78f694 rewritten zsh (dendritic) 2026-03-07 23:10:09 +01:00
henrov 0e925041e5 Working on zsh 2026-03-07 23:08:34 +01:00
henrov 52a73cfdf7 Working on zsh 2026-03-07 23:07:58 +01:00
@@ -2,14 +2,15 @@
config, config,
pkgs, pkgs,
lib, lib,
user,
... ...
}: }:
{ {
home-manager.users.${user.username} = {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
#autocd = true; dotDir = "${config.xdg.configHome}/zsh"; # Now correct: inside Home Manager scope
dotDir = "${config.xdg.configHome}/zsh";
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
theme = ""; theme = "";
@@ -26,5 +27,7 @@
}; };
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
zshoptions = [ "AUTO_CD" ];
};
}; };
} }