diff options
-rw-r--r-- | .zshrc | 4 | ||||
-rwxr-xr-x | bootstrap.sh | 5 |
2 files changed, 5 insertions, 4 deletions
@@ -18,7 +18,7 @@ HISTSIZE=1000 SAVEHIST=1000 HISTFILE=~/.zsh_history -[ -d ~/.dotfiles/bin ] && export PATH="$HOME/.dotfiles/bin:$PATH" +[ -d ~/bin ] && export PATH="$HOME/bin:$PATH" [[ -s /etc/profile.d/autojump.sh ]] && source /etc/profile.d/autojump.sh @@ -67,4 +67,4 @@ if ! zplug check --verbose; then fi zplug load -source $HOME/.dotfiles/.aliases +source $HOME/.aliases diff --git a/bootstrap.sh b/bootstrap.sh index f0876f9..3d44bee 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -7,16 +7,17 @@ remove_and_link () { do if [ -L $HOME/$var ] && [ -e $HOME/$var ] && \ [ "$(readlink -- $HOME/$var)" = "$dotfiles_dir/$var" ]; then - return + continue fi rm -rf $HOME/$var ln -s $dotfiles_dir/$var $HOME/$var + echo "Linked: $HOME/$var -> $dotfiles_dir/$var" done } link_all () { - remove_and_link .ctags.d .mutt bin .alias .macos \ + remove_and_link .ctags.d .mutt bin .aliases .macos \ .mbsyncrc .msmtprc .tmux.conf .urlview .zshrc \ .vimrc .vim } |