From fcf0bc8f4a8cfc7052e675ab6a16f9d7f033b5b0 Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Sun, 7 Jul 2024 00:16:00 +0700 Subject: [PATCH] zsh: removed autocompletes as they slowdown startup time --- home/programs/zsh.nix | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/home/programs/zsh.nix b/home/programs/zsh.nix index 13d21f3..e2b489c 100644 --- a/home/programs/zsh.nix +++ b/home/programs/zsh.nix @@ -111,27 +111,6 @@ in src = pkgs.zsh-history-substring-search; file = "share/zsh-history-substring-search/zsh-history-substring-search.zsh"; } - { - name = "golang-autocomplete"; - src = pkgs.oh-my-zsh; - file = "share/oh-my-zsh/plugins/golang/golang.plugin.zsh"; - } - ] - # ++ optional (config.profile.podman.enable) { - # name = "podman"; - # src = pkgs.oh-my-zsh; - # file = "share/oh-my-zsh/plugins/podman/podman.plugin.zsh"; - # } - ; - - # Antidote should only be used for loading completions - # antidote = { - # enable = true; - # plugins = [ - # "ohmyzsh/ohmyzsh path:plugins/golang" - # ] - # ++ optional (config.profile.podman.enable) "ohmyzsh/ohmyzsh path:plugins/podman" - # ; - # }; + ]; }; }