Auto-sync from catchthesethighs

This commit is contained in:
adlee-was-taken
2025-12-16 23:08:08 -05:00
parent f1193a967b
commit 9a3a883347
7 changed files with 65 additions and 1 deletions

19
.tmux-templates/dev.tmux Normal file
View File

@@ -0,0 +1,19 @@
# Development workspace
# Usage: tw-create myproject dev
# Split vertically (vim on left 50%, rest on right)
split-window -h -p 50
# Split right pane horizontally (terminal top, logs bottom)
split-window -v -p 50
# Select the first pane (vim)
select-pane -t 0
# Optional: Start vim in first pane
# send-keys -t 0 'vim' C-m
# Optional: Set pane titles
# select-pane -t 0 -T "Editor"
# select-pane -t 1 -T "Terminal"
# select-pane -t 2 -T "Logs"