diff --git a/README.md b/README.md index a2576be..3840cc7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ dotfiles ======== -The aptly named \ No newline at end of file +The aptly named. + +Vim: Vundle plugin manager, nerdtree, minibufexpl +Tmux: Play nice with vim colors, use screen keybindings +dwm+conky: basic status bar (cpu/temp/mem/SSID/date/battery), and feh for wallpaper diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 3764140..76f5468 --- a/install.sh +++ b/install.sh @@ -1,13 +1,16 @@ #!/bin/bash dir=~/dotfiles -files="vimrc tmux.conf" +files="vimrc tmux.conf 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