diff --git a/.gitmodules b/.gitmodules index 0616450..4dfcaa1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,3 +37,6 @@ [submodule "zsh/.config/zsh/plugins/zsh-autosuggestions"] path = zsh/.config/zsh/plugins/zsh-autosuggestions url = https://github.com/zsh-users/zsh-autosuggestions/ +[submodule "zsh/.config/zsh/plugins/zsh-you-should-use"] + path = zsh/.config/zsh/plugins/zsh-you-should-use + url = https://github.com/MichaelAquilina/zsh-you-should-use.git diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index 4777809..2ea5533 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -42,7 +42,10 @@ unset keyfile ################ # Load plugins # ################ -plugins=(zsh-autosuggestions/zsh-autosuggestions.zsh) +plugins=( + zsh-autosuggestions/zsh-autosuggestions.zsh + zsh-you-should-use/you-should-use.plugin.zsh +) for plugin in "${plugins[@]}"; do if [[ -f "$ZDOTDIR/plugins/$plugin" ]]; then @@ -70,6 +73,7 @@ alias userctl='systemctl --user' alias :q='exit' alias wget="wget --hsts-file=\"$XDG_CACHE_HOME/wget-hsts\"" alias makej="make -j$(nproc)" +alias sdc='sudo docker-compose' if (( $+commands[thefuck] )) then diff --git a/zsh/.config/zsh/plugins/zsh-you-should-use b/zsh/.config/zsh/plugins/zsh-you-should-use new file mode 160000 index 0000000..92d3322 --- /dev/null +++ b/zsh/.config/zsh/plugins/zsh-you-should-use @@ -0,0 +1 @@ +Subproject commit 92d3322e0e8aaa5d9eb77bb05bcf2eb7141c1776