diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-01-17 22:48:06 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-01-17 22:48:06 -0500 |
commit | be83fd4938dabfb4eb1bee6ded10365c202c7112 (patch) | |
tree | 664ef16cc5366cdab632c04a32de3bcb15e75e00 /tmux |
Inital Commit
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.tmux.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..dd48b06 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,11 @@ +set -g prefix C-a +unbind-key C-b +bind-key C-a send-prefix + +bind-key | split-window -h +bind-key - split-window -v + +bind j select-pane -D +bind k select-pane -U +bind h select-pane -L +bind l select-pane -R |