9 lines
126 B
Text
9 lines
126 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
tmux new-window -dn scratch
|
||
|
tmux new-window -dn server
|
||
|
|
||
|
tmux send-keys -t server "nix run" Enter
|
||
|
|
||
|
nvim .
|