-
-
Save jmoyers/ae9b5408aa8d3f9a64b89bed04e23da9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# http://jmoyers.org/minimal-tmux-dev/ | |
# Create a 3 paned tmux window with vim on left | |
# v [file] | |
tmux new-session -d -s dev | |
tmux new-window -t dev | |
tmux rename-window 'Dev' | |
tmux split-window -h | |
tmux split-window -v | |
tmux select-pane -t 0 | |
tmux send-keys "vim $1' 'C-m' | |
tmux attach-session -d -tdev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment