From 889a388167c58cec39f68c36a1410252536b2092 Mon Sep 17 00:00:00 2001 From: Siina Mashek Date: Wed, 26 Jan 2022 23:41:22 +0200 Subject: [PATCH] Added really shitty linker for zsh stuff. --- link.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/link.sh b/link.sh index ee2aaa8..3570d7c 100755 --- a/link.sh +++ b/link.sh @@ -1,7 +1,7 @@ #!/bin/sh folders=($(ls $PWD/config)) -files=("bashrc" "xbindkeysrc") +files=("bashrc" "zshrc" "profile" "xbindkeysrc") for folder in "${folders[@]}"; do ln -sf $PWD/config/$folder $HOME/.config/ @@ -10,3 +10,9 @@ done for file in "${files[@]}"; do ln -sf $PWD/$file $HOME/.$file done + +# TODO Clean me up +mkdir -p $HOME/.config/zsh/{plugins,zprompts} +git clone https://github.com/xylous/gitstatus $HOME/Projects/gitstatus +ln -sf $HOME/Projects/gitstatus/gitstatus.plugin.zsh $HOME/.config/zsh/plugins/gitstatus.zsh +ln -sf $PWD/zprompts/bunni.zsh $HOME/.config/zsh/zprompts/prompt_bunni_setup