19 lines
504 B
Bash
Executable File
19 lines
504 B
Bash
Executable File
#!/bin/sh
|
|
DIR=$(dirname $0)
|
|
|
|
# install vimplug
|
|
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
# install oh-my-zsh
|
|
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
|
|
|
|
# symlinks
|
|
ln -s $DIR/.vimrc ~/.vimrc
|
|
ln -s $DIR/.ideavimrc ~/.ideavimrc
|
|
ln -s $DIR/.gitconfig ~/.gitconfig
|
|
ln -s $DIR/.zshrc ~/.zshrc
|
|
ln -s $DIR/.Xdefaults ~/.Xdefaults
|
|
|
|
ln -s $DIR/awesome/ ~/.config/awesome/
|