diff options
Diffstat (limited to 'tmux/default.tmux')
-rw-r--r-- | tmux/default.tmux | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tmux/default.tmux b/tmux/default.tmux new file mode 100644 index 000000000000..69ad131efe24 --- /dev/null +++ b/tmux/default.tmux @@ -0,0 +1,14 @@ +# Simple script designed to be `source-file`'d from within Tmux. It will setup +# panes with common directories for work. + +# Dotfiles +new -s dotfiles -n main +send-keys 'cd ~/dotfiles' C-m + +# Meta +new -s meta -n main +send-keys 'cd ~/urbint/meta' C-m + +# Grid +new -s grid -n main +send-keys 'cd ~/urbint/grid' C-m |