configs/arch-config/.tmux.conf

34 lines
893 B
Plaintext
Raw Normal View History

2020-12-09 21:48:14 +01:00
###################################################
########## main keybind ##########
###################################################
# use different keybinding
unbind C-b
set -g prefix C-s
bind C-s send-prefix
###################################################
########## keybindings ##########
###################################################
# reload tmux conf
bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded!"
# pane movement shortcuts (same as vim)
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
###################################################
########## environment settings ##########
###################################################
# enable mouse
2020-12-10 07:39:47 +01:00
#set -g mouse-utf8 on
2020-12-09 21:33:19 +01:00
set -g mouse on
2020-12-09 21:48:14 +01:00
2020-12-09 21:33:19 +01:00
set -ga terminal-overrides ",xterm-termite:Tc"
2020-12-09 21:48:14 +01:00
2020-12-09 21:33:40 +01:00
set -g history-limit 10000