diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-05-04 12:19:18 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-05-04 12:19:18 -0600 |
commit | 156ff21163354e83babcbb8ff2d228d8ab344fa0 (patch) | |
tree | 1a186aa6d19bedfc3fdd87e756c6a3d9d56676e7 /tmux | |
parent | 4f04b5bce898c4528a51607069caa6f1c6a90951 (diff) | |
download | dotfiles-156ff21163354e83babcbb8ff2d228d8ab344fa0.tar dotfiles-156ff21163354e83babcbb8ff2d228d8ab344fa0.tar.gz dotfiles-156ff21163354e83babcbb8ff2d228d8ab344fa0.tar.bz2 |
add tmux conf
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.tmux.conf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..f930ac5 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,13 @@ +set -g prefix C-a +set -g visual-activity on +set -g status-style fg=white,bg=black +set-window-option -g mode-keys vi +set -g status-right "#[fg=green,bg=default]#{pane_current_path}" +set -ag status-right " #[fg=yellow,bg=default]%I:%M%p " +set -g mouse on +set -g default-terminal "screen-256color" + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R |