@ -1,4 +1,8 @@
dotfiles
========
The aptly named
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
@ -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