From 7283e1ef8b8410df89341995d3dd2f335bc0c396 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:35:10 -0400 Subject: [PATCH] 258 current 2024-10-01 21:35:04 24.11.20240916.99dc878 6.11.0 * --- common/programs/zsh.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/common/programs/zsh.nix b/common/programs/zsh.nix index 10fddbe..14bbc7f 100644 --- a/common/programs/zsh.nix +++ b/common/programs/zsh.nix @@ -13,4 +13,17 @@ in enable = true; oh-my-zsh.enable = true; initExtra = zshInitArgs; + enableCompletion = true; + plugins = [ + { + name = "zsh-nix-shell"; + file = "nix-shell.plugin.zsh"; + src = pkgs.fetchFromGitHub { + owner = "chisui"; + repo = "zsh-nix-shell"; + rev = "v0.8.0"; + sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7"; + }; + } + ]; }