aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHumphrey Lin <[email protected]>2020-12-09 16:19:29 +0800
committerHumphrey Lin <[email protected]>2020-12-09 16:19:29 +0800
commit815697759560472b94e063cbad153ef6ca5069db (patch)
tree35bcad0bc4befa23385f73c6d482caad7ade6f5a
parentbd0a8884fbada10707a3473098f8d33a9e5cb510 (diff)
downloaddotfiles-815697759560472b94e063cbad153ef6ca5069db.tar.gz
dotfiles-815697759560472b94e063cbad153ef6ca5069db.tar.bz2
dotfiles-815697759560472b94e063cbad153ef6ca5069db.zip
Link gitconfig in install.sh
-rw-r--r--install.sh15
1 files changed, 8 insertions, 7 deletions
diff --git a/install.sh b/install.sh
index c592850..7dd7ea4 100644
--- a/install.sh
+++ b/install.sh
@@ -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
)
}