9 lines
164 B
Bash
9 lines
164 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo -e "\n${BLD}${SUL}${GRN}Setting up tmux...${RST}\n"
|
|
|
|
setup_zsh() {
|
|
symlink "$DOTS/config/tmux/tmux.conf" "$HOME"/.tmux.conf
|
|
}
|
|
|
|
setup_zsh
|