fix(lazy): zplug lazy option not working with nixos

This commit is contained in:
Jiří Štefka 2024-05-10 05:05:00 +02:00
parent 4e65e7080e
commit 644d47ff34
Signed by: jiriks74
GPG Key ID: 1D5E30D3DB2264DE

12
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.
];
};