mirror of
1
0
Fork 0
tmux-config/setup.sh

13 lines
305 B
Bash
Raw Normal View History

2022-11-03 20:09:38 -04:00
#!/bin/bash
2022-11-03 20:17:57 -04:00
INSTALL_DIR='$HOME/.installs'
2022-11-03 20:18:23 -04:00
TMUX_DIR='$INSTALL_DIR/tmux-config'
2022-11-03 20:09:38 -04:00
2022-11-03 20:17:57 -04:00
mkdir -p $INSTALL_DIR
echo 'installing tmux-config in $TMUX_DIR'
2022-11-03 20:09:38 -04:00
git clone git@github.com:chanwutk/tmux-config.git $TMUX_DIR
ln -s -f $TMUX_DIR/.tmux.conf ~/.tmux.conf
2022-11-03 20:14:37 -04:00
ln -s -f $TMUX_DIR/.tmux.conf.local ~/.tmux.conf.local