mirror of
https://github.com/opdavies/build-configs.git
synced 2025-02-02 13:57:33 +00:00
13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o errexit
|
||
|
|
||
|
# 1. Vim.
|
||
|
tmux send-keys -t "$1:1" "nvim" Enter
|
||
|
|
||
|
# 3. General shell use.
|
||
|
tmux new-window -t "$1" -c "$PWD"
|
||
|
tmux send-keys -t "$1:2" "git status" Enter
|
||
|
|
||
|
tmux select-window -t "$1:1"
|