diff options
Diffstat (limited to '.tmux.conf')
-rw-r--r-- | .tmux.conf | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -13,6 +13,13 @@ bind-key C-v send-prefix ## Binds bind e set-window-option synchronize-panes +bind-key -n C-t new-window + +unbind NPage +unbind PPage +bind-key -n C-PPage previous-window +bind-key -n C-NPage next-window + ## Misc # address vim mode switching delay (http://superuser.com/a/252717/65504) @@ -64,5 +71,8 @@ bind -n C-l send-keys C-l \; run 'sleep 0.1' \; clear-history set -g monitor-activity on set -g visual-activity off +# Enable mouse features +set -g mouse on + # Debian Powerline source '/usr/share/powerline/bindings/tmux/powerline.conf' |