dotwryn/tmux/tmux.conf
2020-09-25 13:43:40 -06:00

23 lines
545 B
Bash

source-file ~/.wryn/tmux/n-bindings.tmux
source-file ~/.wryn/tmux/t-bindings.tmux
# don't use escape key
set -s escape-time 0
# quick reload
bind-key r source-file ~/.tmux.conf\; display "TMUX CONFIG RELOADED"
bind-key -n M-r source-file ~/.tmux.conf\; display "TMUX CONFIG RELOADED"
# force color
set -g default-terminal "tmux-256color"
# force utf-8
setw -gq utf8 on
# show battery life
set -g status-right "#(cat /sys/class/power_supply/BAT0/capacity)% | #[fg=black]%d %b %R"
# disable mouse-mode
set -g mode-mouse off
set -g mouse off