Added really shitty linker for zsh stuff.
This commit is contained in:
parent
69761ada31
commit
889a388167
8
link.sh
8
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
|
||||
|
|
Loading…
Reference in New Issue