10 lines
155 B
Bash
Executable file
10 lines
155 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PATH="${PATH}:./vendor/bin"
|
|
|
|
tmux new-window -dn scratch
|
|
tmux new-window -dn server
|
|
|
|
tmux send-keys -t server "./watch" Enter
|
|
|
|
nvim .
|