From 644d47ff349359c613e728796ad1fc220f167162 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Fri, 10 May 2024 05:05:00 +0200 Subject: [PATCH] fix(lazy): zplug lazy option not working with nixos --- zsh.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zsh.nix b/zsh.nix index 9220a07..3ede018 100755 --- a/zsh.nix +++ b/zsh.nix @@ -19,17 +19,17 @@ { name = "zsh-users/zsh-autosuggestions"; } # Simple plugin installation { name = "romkatv/powerlevel10k"; tags = [ as:theme depth:1 ]; } # Installations with additional options. For the list of options, please refer to Zplug README. { name = "zsh-users/zsh-syntax-highlighting"; } - { name = "MichaelAquilina/zsh-you-should-use"; lazy = true; } # Did you forget to use an alias? + { name = "MichaelAquilina/zsh-you-should-use"; } # Did you forget to use an alias? { name = "gko/ssh-connect"; tags = [ use:ssh-connect.sh ]; } # List of most used ssh connections - { name = "sineto/web-search"; lazy = true; } + { name = "sineto/web-search"; } { name = "plugins/dirhistory"; tags = [ from:oh-my-zsh ]; } { name = "plugins/command-not-found"; tags = [ from:oh-my-zsh ]; } - { name = "davidde/git"; lazy = true; } # Aliases for git - { name = "agkozak/zsh-z"; lazy = true; } # Jump arount your filesystem with ease + { name = "davidde/git"; } # Aliases for git + { name = "agkozak/zsh-z"; } # Jump arount your filesystem with ease { name = "babarot/enhancd"; tags = [ use:init.sh ]; } # Includes simmilar functionality to zsh-z { name = "zsh-users/zsh-completions"; } # Adds some missing completions to zsh - { name = "zsh-users/zaw"; lazy = true; } # Desctiptions for command outputs (afaik)zplug "plugins/git", from:oh-my-zsh - { name = "supercrabtree/k"; lazy = true; } # Directory listings for Zsh with git features. + { name = "zsh-users/zaw"; } # Desctiptions for command outputs (afaik)zplug "plugins/git", from:oh-my-zsh + { name = "supercrabtree/k"; } # Directory listings for Zsh with git features. ]; };