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, config,
pkgs, pkgs,
lib, lib,
user,
... ...
}: }:
{ {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
#autocd = true; dotDir = "${config.xdg.configHome}/zsh"; # Remove `config.` prefix
dotDir = "${config.xdg.configHome}/zsh";
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
theme = ""; theme = "";
@@ -26,5 +26,6 @@
}; };
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
zshoptions = [ "AUTO_CD" ];
}; };
} }