From c65513c6964df0d3b3925809a418f7e97f43cf0f Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Mon, 29 Apr 2024 15:41:20 +0200 Subject: [PATCH] fix(you-should-use): Move message position to after --- zsh.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/zsh.nix b/zsh.nix index 1e38011..6723f4c 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"; } # Did you forget to use an alias? + { name = "MichaelAquilina/zsh-you-should-use"; lazy = true; } # 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"; } + { name = "sineto/web-search"; lazy = true; } { name = "plugins/dirhistory"; tags = [ from:oh-my-zsh ]; } { name = "plugins/command-not-found"; tags = [ from:oh-my-zsh ]; } - { name = "davidde/git"; } # Aliases for git - { name = "agkozak/zsh-z"; } # Jump arount your filesystem with ease + { name = "davidde/git"; lazy = true; } # Aliases for git + { name = "agkozak/zsh-z"; lazy = true; } # 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"; } # Desctiptions for command outputs (afaik)zplug "plugins/git", from:oh-my-zsh - { name = "supercrabtree/k"; } # Directory listings for Zsh with git features. + { 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. ]; }; @@ -50,6 +50,7 @@ # fi eval $(thefuck --alias) + export YSU_MESSAGE_POSITION="after" # you-should-use plugin # Basic auto/tab complete: autoload -U compinit