-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
42 lines (32 loc) · 1.09 KB
/
.tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Set prefix key (default is C-b)
set-option -g prefix "C-\\"
unbind-key C-b
bind-key C-\ send-prefix # Linux
#bind-key C-\\ send-prefix # Mac
# Improve colors
set-option -g default-terminal 'screen-256color'
# Set scrollback buffer to 999999
set-option -g history-limit 999999
# Enable scrolling with mouse
set-option -g mouse on
# Enable scrolling with keyboard shortcuts
#set-option -g mode-keys emacs
#set-option -g mode-keys vi
# Customize the status line
set-option -g status-fg black
set-option -g status-bg yellow
# force a reload of the config file
#unbind-key r
#bind-key r source-file ~/.tmux.conf
##
# TMUX Plugin Manager
# See: https://github.com/tmux-plugins/tpm
# bash-ftw Insallation Cheatsheet: install-tpm
# List of plugins - `<prefix> + I` to install plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'