|
@ -1,13 +1,16 @@ |
|
|
#!/bin/bash |
|
|
#!/bin/bash |
|
|
|
|
|
|
|
|
dir=~/dotfiles |
|
|
dir=~/dotfiles |
|
|
files="vimrc tmux.conf" |
|
|
|
|
|
|
|
|
files="vimrc tmux.conf conkyrc" |
|
|
|
|
|
|
|
|
cd $dir |
|
|
cd $dir |
|
|
for file in $files; do |
|
|
for file in $files; do |
|
|
ln -s $dir/$file ~/.$file |
|
|
ln -s $dir/$file ~/.$file |
|
|
done |
|
|
done |
|
|
|
|
|
|
|
|
|
|
|
chmod +x dwmstart |
|
|
|
|
|
ln -s $dir/dwmstart ~/dwmstart |
|
|
|
|
|
|
|
|
if [ ! -d ~/.vim/bundle/vundle ]; then |
|
|
if [ ! -d ~/.vim/bundle/vundle ]; then |
|
|
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
|
|
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
|
|
vim +BundleInstall +qall |
|
|
vim +BundleInstall +qall |
|
|