# use the vim resize keys. # the number at the end is how much the pane will be resized, # and 1 is fairly small -- you might want to tweak this. # bind - resize-pane -D 1 # bind + resize-pane -U 1 # bind < resize-pane -L 1 # bind > resize-pane -R 1
# resize panes with vim movement keys bind -r H resize-pane -L 5 bind -r J resize-pane -D 5 bind -r K resize-pane -U 5 bind -r L resize-pane -R 5
# E558: Terminal entry not found in terminfo # 'tmux-256color' not known. ... # solution: install the uptodate ncurses-term package # well this breaks mouse in vim.. worked around by setting vim's ttymouse option set -g default-terminal "tmux-256color"
# This breaks Italics # https://github.com/tmux/tmux/issues/175 # https://github.com/tmux/tmux/commit/7382ba82c5b366be84ca55c7842426bcf3d1f521 # set -g default-terminal "screen-256color"
# Enable mouse mode (tmux 2.1 and above) set -g mouse on