From cdfa287907faaca510951a6ed95f6bf088ba9853 Mon Sep 17 00:00:00 2001 From: Marcel Robitaille Date: Wed, 3 Jun 2020 15:39:23 -0300 Subject: [PATCH] Add `zsh-async` --- .gitmodules | 3 +++ config.yaml | 7 +++++++ zsh-async | 1 + zsh/.zshrc | 1 + 4 files changed, 12 insertions(+) create mode 160000 zsh-async diff --git a/.gitmodules b/.gitmodules index 847b019..c7fe7e9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "dotdrop"] path = dotdrop url = https://github.com/deadc0de6/dotdrop.git +[submodule "zsh-async"] + path = zsh-async + url = https://github.com/mafredri/zsh-async.git diff --git a/config.yaml b/config.yaml index 2a3f1da..cc56a88 100644 --- a/config.yaml +++ b/config.yaml @@ -336,6 +336,10 @@ dotfiles: - oh-my-zsh-install - spaceship-install - tmuxinator-completion + zsh_async: + src: ./zsh-async + dst: ~/.zsh/async + link: link profiles: Zeus: @@ -384,6 +388,7 @@ profiles: - zathura - zshrc - zsh_custom + - zsh_async Hermes: dotfiles: - alacritty @@ -430,11 +435,13 @@ profiles: - zathura - zshrc - zsh_custom + - zsh_async marcel-VirtualBox: dotfiles: - vim - zshrc - zsh_custom + - zsh_async - tmux - xbindkeys - xmodmap diff --git a/zsh-async b/zsh-async new file mode 160000 index 0000000..490167c --- /dev/null +++ b/zsh-async @@ -0,0 +1 @@ +Subproject commit 490167c4aa5a870b3da1458859bcf3a9d1e24f97 diff --git a/zsh/.zshrc b/zsh/.zshrc index d1400c6..39ad2ca 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -14,6 +14,7 @@ export RPS1="%{$reset_color%}" plugins=(git pass vi-mode django) source "$ZSH/oh-my-zsh.sh" +source "$HOME/.zsh/async/async.zsh" for file in $ZSH/custom/{exports,aliases,functions,secret}.sh $ZSH/custom/plugins/*; do [ -r "$file" ] && [ -f "$file" ] && source "$file"