diff options
| author | Ben Beltran <ben@nsovocal.com> | 2020-02-16 14:41:06 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2020-02-16 14:41:06 +0100 |
| commit | a0d257f00ad3d644ac318cf046093f2d52c82bb1 (patch) | |
| tree | 35c01af02b5b7f0b8f2be9c395b2dc0695a826c9 | |
| parent | fa25023586cb94a1abf4fd3ff95ebe7c3c8ead09 (diff) | |
Add install script
| -rwxr-xr-x | install_dotfiles | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/install_dotfiles b/install_dotfiles new file mode 100755 index 0000000..55e8e27 --- /dev/null +++ b/install_dotfiles @@ -0,0 +1,29 @@ +#!/usr/bin/env sh + +echo "Linking runcoms" + +# ZSH runcoms +ln -s .dotfiles/runcoms/zshrc ~/.zshrc +ln -s .dotfiles/runcoms/zshenv ~/.zshenv +ln -s .dotfiles/runcoms/zprofile ~/.zprofile +ln -s .dotfiles/runcoms/zlogout ~/.zlogout +ln -s .dotfiles/runcoms/zlogin ~/.zlogin + +# Weechat +ln -s .dotfiles/weechat ~/.weechat + +# VIM +ln -s .dotfiles/vim ~/.vim +ln -s .dotfiles/vimrc ~/.vimrc + +# TMUX +ln -s .dotfiles/tmux.conf ~/.tmux.conf + +# Nethack +ln -s .dotfiles/nethackrc ~/.nethackrc + +# Git +ln -s .dotfiles/gitconfig ~/.gitconfig + +echo "Setting up terminfo" +tic xterm-256color-italic.terminfo |