blob: 79debfba29d1ff4aa2d0a911b770f8bb7b0b2fe0 (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Inspired by https://github.com/willnorris/dotfiles/blob/main/tmux.conf
# bind prefix to ^a
unbind C-b
set -g prefix `
bind-key ` send-prefix
## make window/pane index start with 1
set -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on
set -g set-titles on
set -g set-titles-string "#W @ #H[#S]"
# disable auto rename of windows
set -g allow-rename off
# enable mouse support
setw -g mouse on
# watch background windows for activity and highlight status bar
set -g monitor-activity on
## set vi mode for copy mode
#setw -g mode-keys vi
#unbind [
#bind Escape copy-mode
#unbind p
#bind p paste-buffer
#bind -t vi-copy 'v' begin-selection
#bind -t vi-copy 't' copy-selection
##
## Key bindings
##
bind Space copy-mode
# don't pre-fill with window or session original name when renaming
bind '$' command-prompt -p "(rename-session '#S')" "rename-session '%%'"
bind , command-prompt -p "(rename-window '#W')" "rename-window '%%'"
# Move windows
if-shell -b '[ "$(echo "$TMUX_VERSION < 3.0" | bc)" = 1 ]' " \
bind P swap-window -t -1; \
bind N swap-window -t +1"
if-shell -b '[ "$(echo "$TMUX_VERSION >= 3.0" | bc)" = 1 ]' " \
bind P { swap-window -t -1; select-window -t -1}; \
bind N { swap-window -t +1; select-window -t +1}"
#bind \ split-window -h -c '#{pane_current_path}'
# toggle last 2 windows
bind Tab last-window
bind BTab swap-pane -t -
bind 0 select-window -t 10
# Status bar
set -g status-right "$USER@#h %H:%M"
# Search
search='~/.config/tmux/scripts/search'
bind / run "$search"
bind C-F run "$search path"
bind C-U run "$search url"
bind C-G run "$search interesting"
set -g @colors-solarized 'light'
# To Install Plugin: <Prefix> + I
# To Uninstall Plugin: <Prefix> + <Alt> + U
if '[ -f ~/.tmux.conf.local ]' 'source ~/.tmux.conf.local'
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'seebi/tmux-colors-solarized'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @resurrect-capture-pane-contents 'on'
set -g @resurrect-processes 'vim man less more tail top htop mutt nnn watch entr ssh psql pgcli bat docker docker-compose lazygit'
set -g @continuum-restore 'on'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.config/tmux/plugins/tpm/tpm'
|