build-configs/.tmux

13 lines
218 B
Plaintext
Raw Permalink Normal View History

2024-06-27 11:14:37 +00:00
#!/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"