move config around, and add install step

This commit is contained in:
Tyrel Souza 2017-02-03 15:10:10 -05:00
parent 1096fab497
commit 11b56f4fd5
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
3 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
vim/bundle/
vim/view
config/fish/fishd.*

View File

@ -1,5 +1,6 @@
#!/bin/bash
ln -s $(pwd)/bash_aliases ~/.bash_aliases
ln -s $(pwd)/gitconfig ~/.gitconfig
ln -s $(pwd)/gitignore ~/.gitignore
@ -12,6 +13,12 @@ ln -s $(pwd)/zshrc ~/.zshrc
ln -s $(pwd)/tyrel.zsh-theme ~/.oh-my-zsh/themes/tyrel.zsh-theme
ln -s $(pwd)/pythonstartup.py ~/.pythonstartup.py
# cleanup fish config
mkdir -p ~/.config/fish
rm -rf ~/.config/fish
ln -s $(pwd)/config/fish ~/.config/fish
# Setup vim
mkdir -p ~/.vim/bundle
cd ~/.vim/bundle