-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
44 lines (34 loc) · 1.19 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
43
44
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# allow mouse to copy selected text in tmux panes
set -g mouse on
# use Alt+arrow key to switch panes easily
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# use the | and - keys to split windows
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
set -g default-terminal "xterm-256color"
set -g pane-active-border-style default
# This will increase the size of the scrollback buffer.
set-option -g history-limit 256000
# These are from the stL
# https://gist.github.com/chearon/a17fd4d1ce58f9c0fa8607466a65e255 default statusbar colors
set -g status-bg colour235 #base02
set -g status-fg colour136 #yellow
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin '[email protected]:user/plugin'
# set -g @plugin '[email protected]:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'