-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
37 lines (29 loc) · 1.02 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
# tmux source-file ~/.tmux.conf
# Remap keys
bind | split-window -h # Split panes horizontal
bind - split-window -v # Split panes vertically
# vet ej vad
set -g set-titles on
set -g set-titles-string "#T"
# Improve colors
#set -g default-terminal 'screen-256color'
# 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 '[email protected]:user/plugin'
# set -g @plugin '[email protected]:user/plugin'
# Autosave tmux environment
#set -g @plugin 'tmux-plugins/tmux-resurrect'
#set -g @plugin 'tmux-plugins/tmux-continuum'
## Restore Vim sessions
#set -g @resurrect-strategy-vim 'session'
## Restore Panes
#set -g @resurrect-capture-pane-contents 'on'
## Restore last saved environment (automatically)
#set -g @continuum-restore 'on'
## Start tmux automatically on boot
#set -g @continuum-boot 'on'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
#run '~/.tmux/plugins/tpm/tpm'