-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmux.conf.local
More file actions
45 lines (34 loc) · 1.04 KB
/
tmux.conf.local
File metadata and controls
45 lines (34 loc) · 1.04 KB
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
45
unbind C-s
set -g prefix C-b
setw -g aggressive-resize off
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-yank'
## -- from tpm -- ###
# List of plugins
# Supports `github_username/repo` or full git repo URLs
#set -g @tpm_plugins ' \
# tmux-plugins/tpm \
# tmux-plugins/tmux-sensible \
#'
# Other examples:
# github_username/plugin_name \
# git@github.com/user/plugin \
# git@bitbucket.com/user/plugin \
# Initializes TMUX plugin manager.
# Keep this line at the very bottom of tmux.conf.
run-shell '~/.tmux/plugins/tpm/tpm'
## -- from tpm -- ###
# sync pane
bind a setw synchronize-panes
# ESC corresponding timeout
set -g escape-time 0
# fix clipboard
# set -g default-shell $SHELL
# set -g default-command "reattach-to-user-namespace -l ${SHELL}"
# for neovim
set-option -g focus-events on
unbind-key C-s
set-option -sa terminal-overrides ',st-256color:RGB'
set -g update-environment "TMUX_PATH"
run-shell 'echo "tmux.conf.local finished..."'