1
0
Fork 0
mirror of synced 2024-06-29 00:31:08 -04:00
tmux-config/setup.sh

12 lines
270 B
Bash
Raw Normal View History

2022-11-03 20:09:38 -04:00
#!/bin/bash
mkdir -p ~/.installs
TMUX_DIR='~/.installs/tmux-config'
2022-11-03 20:14:37 -04:00
echo 'install 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