20 lines
422 B
Bash
Executable File
20 lines
422 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ln -s ~/dotfiles/bash/bashrc.sh ~/.bashrc
|
|
|
|
# Git
|
|
ln -s ~/dotfiles/git/gitconfig ~/.gitconfig
|
|
ln -s ~/dotfiles/git/gitignore ~/.gitignore
|
|
|
|
# Ruby
|
|
ln -s ~/dotfiles/ruby/gemrc ~/.gemrc
|
|
ln -s ~/dotfiles/ruby/irbrc ~/.irbrc
|
|
ln -s ~/dotfiles/ruby/aprc ~/.aprc
|
|
|
|
# VIM
|
|
# These configs are old and not maintained, don't link them automatically
|
|
# ln -s ~/dotfiles/vim/vim ~/.vim
|
|
# ln -s ~/dotfiles/vim/vimrc ~/.vimrc
|
|
|
|
|