reverting to using ln manually
This commit is contained in:
parent
60965783d1
commit
3786cd45f4
13
envsetup.sh
13
envsetup.sh
|
@ -46,14 +46,19 @@ changeshell() {
|
||||||
printf '%s\n' "Your default shell is already zsh, continuing."
|
printf '%s\n' "Your default shell is already zsh, continuing."
|
||||||
else
|
else
|
||||||
chsh -s $(which zsh)
|
chsh -s $(which zsh)
|
||||||
|
printf '%s\n' "Default shell changed to zsh, logout and login to see changes"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
linkfiles() {
|
linkfiles() {
|
||||||
find ~/dev/dotfiles -type f -name ".*" -execdir ln -s -f {}
|
#find ~/dev/dotfiles -type f -name ".*" -execdir ln -s -f {}
|
||||||
--target-directory=$HOME \;
|
# --target-directory=$HOME \; # removed until I can figure out the issue
|
||||||
ln -s ~/dev/dotfiles/.zsh $HOME
|
ln -sf ~/dev/dotfiles/.zshrc $HOME/
|
||||||
ln -s ~/dev/dotfiles/.vim $HOME
|
ln -sf ~/dev/dotfiles/.vimrc $HOME/
|
||||||
|
ln -sf ~/dev/dotfiles/.tmux.conf $HOME/
|
||||||
|
ln -sf ~/dev/dotfiles/.conkyrc $HOME/
|
||||||
|
ln -sf ~/dev/dotfiles/.zsh $HOME/
|
||||||
|
ln -sf ~/dev/dotfiles/.vim $HOME/
|
||||||
touch ~/.zhistory
|
touch ~/.zhistory
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue