diff options
author | Tharre <tharre3@gmail.com> | 2015-04-06 16:52:11 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-10-07 19:43:04 +0000 |
commit | 5dc6f06e82afd13919ac5d50f8bf23453af5bce9 (patch) | |
tree | a0573d0b339b7d04f007b96cba4cd3fbb035c015 /install.sh | |
parent | acec706874ad8a59ba75b5784848f9bca1dce6e6 (diff) | |
download | dotfiles-5dc6f06e82afd13919ac5d50f8bf23453af5bce9.tar.gz dotfiles-5dc6f06e82afd13919ac5d50f8bf23453af5bce9.tar.xz dotfiles-5dc6f06e82afd13919ac5d50f8bf23453af5bce9.zip |
Rename $root to $dotfiles
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,24 +1,24 @@ #!/bin/sh -root=$(pwd) +dotfiles=$(pwd) # make sure all submodules are there 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 "$dotfiles/shell/_zshrc" "$HOME/.zshrc" +ln -sfT "$dotfiles/shell/_oh-my-zsh" "$HOME/.oh-my-zsh" # [emacs] -ln -sfT "$root/dotEmacs" "$HOME/.emacs.d" +ln -sfT "$dotfiles/dotEmacs" "$HOME/.emacs.d" # [vim] -ln -sf "$root/shell/_vimrc" "$HOME/.vimrc" +ln -sf "$dotfiles/shell/_vimrc" "$HOME/.vimrc" # [git] -ln -sf "$root/shell/_gitconfig" "$HOME/.gitconfig" +ln -sf "$dotfiles/shell/_gitconfig" "$HOME/.gitconfig" # [tmux] -ln -sf "$root/shell/_tmux.conf" "$HOME/.tmux.conf" +ln -sf "$dotfiles/shell/_tmux.conf" "$HOME/.tmux.conf" echo "Finished installing dotfiles" |