commit 075eea4a06deee85d96c45416740add6eb94f008 (tree) parent 08d1c10614574a9a9605faf0210e4faaa4b9705b Author: Motiejus Jakštys <motiejus@uber.com> Date: Mon, 31 Dec 2018 09:28:42 +0200 add tmux Diffstat:
| A | tmux/.tmux.conf | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf @@ -0,0 +1,8 @@ +set-window-option -g mode-keys vi +set-option -g history-limit 300000 + +bind '%' split-window -h -c '#{pane_current_path}' # Split panes horizontal +bind '"' split-window -v -c '#{pane_current_path}' # Split panes vertically +bind c new-window -c '#{pane_current_path}' # Create new window + +set -g default-terminal "screen-256color"