From 2f9cea39177a029a1e2d47b86b0080a394b78c0b Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sat, 16 Mar 2024 17:50:13 +0100 Subject: [PATCH] Update zsh and eza settings. --- home-manager/modules/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/modules/shell.nix b/home-manager/modules/shell.nix index f26ca85..901efa8 100644 --- a/home-manager/modules/shell.nix +++ b/home-manager/modules/shell.nix @@ -3,7 +3,7 @@ # But we all know I love zsh programs.zsh = { enable = true; - enableAutosuggestions = true; + autosuggestions.enable = true; enableCompletion = true; history.path = "${config.xdg.dataHome}/zsh/history"; dotDir = ".config/zsh"; @@ -53,7 +53,7 @@ # Eza settings programs.eza = { enable = true; - enableAliases = true; + enableZshIntegration = true; git = true; icons = true; };