diff options
-rwxr-xr-x | install.sh | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -6,19 +6,19 @@ root=$(pwd) git submodule update --init # [zsh] -ln -sf $root/shell/_zshrc $HOME/.zshrc -ln -sfT $root/shell/_oh-my-zsh $HOME/.oh-my-zsh +ln -sf "$root/shell/_zshrc" "$HOME/.zshrc" +ln -sfT "$root/shell/_oh-my-zsh" "$HOME/.oh-my-zsh" # [emacs] -ln -sfT $root/dotEmacs $HOME/.emacs.d +ln -sfT "$root/dotEmacs" "$HOME/.emacs.d" # [vim] -ln -sf $root/shell/_vimrc $HOME/.vimrc +ln -sf "$root/shell/_vimrc" "$HOME/.vimrc" # [git] -ln -sf $root/shell/_gitconfig $HOME/.gitconfig +ln -sf "$root/shell/_gitconfig" "$HOME/.gitconfig" # [tmux] -ln -sf $root/shell/_tmux.conf $HOME/.tmux.conf +ln -sf "$root/shell/_tmux.conf" "$HOME/.tmux.conf" echo "Finished installing dotfiles" |