diff options
author | Humphrey Lin <[email protected]> | 2020-12-09 16:19:29 +0800 |
---|---|---|
committer | Humphrey Lin <[email protected]> | 2020-12-09 16:19:29 +0800 |
commit | 815697759560472b94e063cbad153ef6ca5069db (patch) | |
tree | 35bcad0bc4befa23385f73c6d482caad7ade6f5a | |
parent | bd0a8884fbada10707a3473098f8d33a9e5cb510 (diff) | |
download | dotfiles-815697759560472b94e063cbad153ef6ca5069db.tar.gz dotfiles-815697759560472b94e063cbad153ef6ca5069db.tar.bz2 dotfiles-815697759560472b94e063cbad153ef6ca5069db.zip |
Link gitconfig in install.sh
-rw-r--r-- | install.sh | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -23,13 +23,14 @@ get_dotfiles() { cd "$HOME" - rm -rf .vimrc .tmux.conf .bashrc .zshrc .i3/config .emacs.d/init.el - ln -s .dotfiles/.vimrc .vimrc - ln -s .dotfiles/.tmux.conf .tmux.conf - ln -s .dotfiles/.bashrc .bashrc - ln -s .dotfiles/.zshrc .zshrc - ln -s .dotfiles/.emacs.d/init.el .emacs.d/init.el - ln -s .dotfiles/.i3/config .i3/config + rm -rf .vimrc .tmux.conf .bashrc .zshrc .i3/config .emacs.d/init.el .gitconfig + ln -s ~/.dotfiles/.vimrc .vimrc + ln -s ~/.dotfiles/.tmux.conf .tmux.conf + ln -s ~/.dotfiles/.bashrc .bashrc + ln -s ~/.dotfiles/.zshrc .zshrc + ln -s ~/.dotfiles/.emacs.d/init.el .emacs.d/init.el + ln -s ~/.dotfiles/.i3/config .i3/config + ln -s ~/.dotfiles/.gitconfig .gitconfig ) } |