aboutsummaryrefslogtreecommitdiff
path: root/tmux/tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to 'tmux/tmux.conf')
-rw-r--r--tmux/tmux.conf24
1 files changed, 24 insertions, 0 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf
new file mode 100644
index 0000000..343568c
--- /dev/null
+++ b/tmux/tmux.conf
@@ -0,0 +1,24 @@
1set -g mouse on
2set -g default-terminal "xterm-256color"
3set -g status-left " "
4set -g status-right ""
5set -g base-index 1
6set -g pane-base-index 1
7set -g history-limit 10000
8set -g escape-time 0
9set -g aggressive-resize on
10set -g window-status-style fg=black,bg=green
11set -g window-status-current-style fg=black,bg=blue,bold
12set -g mode-keys vi
13
14bind -n C-S-Left previous-window
15bind -n C-S-Right next-window
16
17bind h select-pane -L
18bind j select-pane -D
19bind k select-pane -U
20bind l select-pane -R
21
22bind m set -g mouse \; display "Mouse #{?mouse,ON,OFF}"
23bind r source-file ~/.config/tmux/tmux.conf \; display-message "Config reloaded"
24