-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·33 lines (25 loc) · 833 Bytes
/
install.sh
File metadata and controls
executable file
·33 lines (25 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
echo "Dependencies: vim, zsh"
#TODO: Use readline/dirname to get directory of script
# Setup vim
#ln -s $PWD/vim $HOME/.vim
#ln -s $HOME/.vim/init.vim $HOME/.vimrc
#ln -s $HOME/.vim/gvimrc $HOME/.gvimrc
# Setup neovim
#mkdir -p $HOME/.config
#ln -s $PWD/vim $HOME/.config/nvim
# Setup tmux
ln -s $PWD/tmux/tmux.conf $HOME/.tmux.conf
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
# Setup zsh
# zsh setup needs improvement
git clone https://github.com/zsh-users/antigen.git $HOME/.antigen #FixMe: Standardize
ln -s $PWD/zsh/zshrc $HOME/.zshrc
ln -s $PWD/zsh/zshrc.alias $HOME/.zshrc.alias #TODO: Remove this;
# Init vim
#vim +PlugInstall +qall
# Set zsh as default shell
chsh -s /bin/zsh
# Init zsh and antigen plugins
touch $HOME/.profile # Make sure this file exists to avoid warnings
zsh -l