fix(you-should-use): Move message position to after

This commit is contained in:
Jiří Štefka 2024-04-29 15:41:20 +02:00
parent 85f7697428
commit c65513c696
Signed by: jiriks74
GPG Key ID: 1D5E30D3DB2264DE

13
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