Skip to content

Instantly share code, notes, and snippets.

@kparmar1
Last active February 3, 2024 18:48
Show Gist options
  • Save kparmar1/d702f6f0491debb5c1127654c572f88d to your computer and use it in GitHub Desktop.
Save kparmar1/d702f6f0491debb5c1127654c572f88d to your computer and use it in GitHub Desktop.
TMUX dev profile (tmux-dev)
function tmux-dev
tmux new-session -n 'Developement_1' -s dev \; \
split-window -v -p 50 \; \
select-pane -t 1 \; \
split-window -h \; \
select-pane -t 0 \; \
new-window -n 'Development_2' \; \
select-window -t 0 \;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment