You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
468 B
22 lines
468 B
#!/bin/bash
|
|
|
|
dir=~/dotfiles
|
|
files="vimrc tmux.conf zshrc conkyrc"
|
|
|
|
cd $dir
|
|
for file in $files; do
|
|
ln -s $dir/$file ~/.$file
|
|
done
|
|
|
|
chmod +x dwmstart
|
|
ln -s $dir/dwmstart ~/dwmstart
|
|
|
|
if [ ! -d ~/.vim/bundle/vundle ]; then
|
|
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
|
|
vim +BundleInstall +qall
|
|
fi
|
|
|
|
if [ ! -d ~/.oh-my-zsh ]; then
|
|
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
|
|
chsh -s 'which zsh'
|
|
fi
|