Skip to content

Instantly share code, notes, and snippets.

@jmoyers
Last active June 3, 2016 04:22
Show Gist options
  • Save jmoyers/ae9b5408aa8d3f9a64b89bed04e23da9 to your computer and use it in GitHub Desktop.
Save jmoyers/ae9b5408aa8d3f9a64b89bed04e23da9 to your computer and use it in GitHub Desktop.
#!/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