From 8bca4aaaf9197ba078cb6235d9a3203c12a5152b Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Wed, 10 Jul 2024 10:50:41 +0700 Subject: [PATCH] zsh: removed import podman completion zsh using zsh-defer --- home/programs/zsh.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/home/programs/zsh.nix b/home/programs/zsh.nix index 855dec7..091f275 100644 --- a/home/programs/zsh.nix +++ b/home/programs/zsh.nix @@ -111,9 +111,6 @@ in # switch group using `<` and `>` zstyle ':fzf-tab:*' switch-group '<' '>' '' - (optionalString config.profile.podman.enable /*bash*/ '' - zsh-defer source <(podman completion zsh) - '') ]; plugins = [ @@ -142,11 +139,11 @@ in src = pkgs.zsh-history-substring-search; file = "share/zsh-history-substring-search/zsh-history-substring-search.zsh"; } - { - name = "zsh-defer"; - src = pkgs.zsh-defer; - file = "share/zsh-defer/zsh-defer.plugin.zsh"; - } + # { + # name = "zsh-defer"; + # src = pkgs.zsh-defer; + # file = "share/zsh-defer/zsh-defer.plugin.zsh"; + # } ]; }; }