summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-04-06 16:52:11 +0200
committerTharre <tharre3@gmail.com>2016-10-07 19:43:04 +0000
commit5dc6f06e82afd13919ac5d50f8bf23453af5bce9 (patch)
treea0573d0b339b7d04f007b96cba4cd3fbb035c015 /install.sh
parentacec706874ad8a59ba75b5784848f9bca1dce6e6 (diff)
downloaddotfiles-5dc6f06e82afd13919ac5d50f8bf23453af5bce9.tar.gz
dotfiles-5dc6f06e82afd13919ac5d50f8bf23453af5bce9.tar.xz
dotfiles-5dc6f06e82afd13919ac5d50f8bf23453af5bce9.zip
Rename $root to $dotfiles
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/install.sh b/install.sh
index 2636c86..c00453c 100755
--- a/install.sh
+++ b/install.sh
@@ -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"