This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-01-29 20:31:02 +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
|
|
|
|
|
|
|
|
# split panes using | and -
|
|
|
|
bind | split-window -h
|
|
|
|
bind - split-window -v
|
|
|
|
unbind '"'
|
|
|
|
unbind %
|
|
|
|
|
|
|
|
# reload config file (change file location to your the tmux.conf you want to use)
|
2020-06-22 09:54:01 +00:00
|
|
|
bind r source-file /home/user/.tmux.conf
|
2020-01-29 20:31:02 +00:00
|
|
|
|
|
|
|
set -g visual-activity off
|
|
|
|
set -g mouse on
|
2020-01-30 22:19:38 +00:00
|
|
|
# This copies highlighted text.
|
|
|
|
set -g mouse-select-window on
|