dotfiles/tmux

23 lines
583 B
Text
Raw Normal View History

2017-12-10 12:01:30 +00:00
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
2017-12-10 12:19:05 +00:00
# start with window 1 (instead of 0)
set -g base-index 1
2017-12-10 12:01:30 +00:00
# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
2017-12-10 12:19:05 +00:00
# don't rename windows automatically
set-option -g allow-rename off
2017-12-11 16:19:47 +00:00
# Get 256 colour support
set -g default-terminal "screen-256color"
2021-07-17 18:05:11 +01:00
# Fig Tmux Integration: Enabled
if-shell "test -e ~/.fig/tmux" "source-file ~/.fig/tmux"
2021-07-17 18:05:11 +01:00
# End of Fig Tmux Integration