Add .tmux

This commit is contained in:
Oliver Davies 2024-06-27 12:14:37 +01:00
parent 0aa6d18cd4
commit e00140d4af

12
.tmux Executable file
View file

@ -0,0 +1,12 @@
#!/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"