diff options
author | Tharre <tharre3@gmail.com> | 2015-08-04 16:10:18 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-10-07 20:13:35 +0000 |
commit | 7f4d325414fa4f49669951e25141e0c456817540 (patch) | |
tree | e988844b0a32193e50500a221d4cd703064a2cbe /install.sh | |
parent | 8c7a495fc164f358daaf8688dd22ac63ccc31e7c (diff) | |
download | dotfiles-7f4d325414fa4f49669951e25141e0c456817540.tar.gz dotfiles-7f4d325414fa4f49669951e25141e0c456817540.tar.xz dotfiles-7f4d325414fa4f49669951e25141e0c456817540.zip |
zsh: config overhaul
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,17 +1,14 @@ -#!/bin/sh +#!/bin/sh -e dotfiles=$(pwd) # make sure all submodules are there -git submodule update --init +git submodule update --init --recursive # [zsh] ln -sf "$dotfiles/shell/_zshrc" "$HOME/.zshrc" ln -sfT "$dotfiles/shell/_oh-my-zsh" "$HOME/.oh-my-zsh" -# [emacs] -ln -sfT "$dotfiles/dotEmacs" "$HOME/.emacs.d" - # [vim] ln -sf "$dotfiles/shell/_vimrc" "$HOME/.vimrc" @@ -34,7 +31,7 @@ if [ "$1" = "arch" ]; then ln -sfT "$dotfiles/email/_mutt" "$HOME/.mutt" ln -sf "$dotfiles/email/_offlineimaprc" "$HOME/.offlineimaprc" ln -sf "$dotfiles/email/_msmtprc" "$HOME/.msmtprc" - mkdir ~/.mail + mkdir -p ~/.mail fi echo "Finished installing dotfiles" |