setup.sh 456 B

12345678910111213141516
  1. #!/bin/bash
  2. ln -s ~/dotfiles/.bashrc ~/.bashrc
  3. ln -s ~/dotfiles/.zshrc ~/.zshrc
  4. ln -s ~/dotfiles/.fishrc ~/.fishrc
  5. ln -s ~/dotfiles/.bash_profile ~/.bash_profile
  6. ln -s ~/dotfiles/.profile ~/.profile
  7. ln -s ~/dotfiles/.xinitrc ~/.xinitrc
  8. ln -s ~/dotfiles/.gitignore ~/.gitignore
  9. ./setup-vim.sh
  10. mkdir -p ~/.config
  11. mkdir -p ~/.config/i3
  12. ln -s ~/dotfiles/i3_config ~/.config/i3/config
  13. #if git is installed
  14. git config --global core.excludesfile '~/.gitignore'