1
0
Fork 0
mirror of synced 2024-05-28 04:41:10 -04:00
tmux-config/setup.sh

14 lines
306 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:09:38 -04:00
2022-11-03 20:17:57 -04:00
mkdir -p $INSTALL_DIR
TMUX_DIR='$INSTALL_DIR/tmux-config'
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