Paste #273415

   
pasted on 21.03.2024 14:15
  • Edit to this paste
  • Print
  • Raw
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
 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
# Easy config reload
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."

# Set window notifications
setw -g monitor-activity on
set -g visual-activity on

# use C-\, since it's on the home row and easier to hit than C-b
set-option -g prefix C-Space
unbind-key C-Space
bind-key C-Space send-prefix
set -g base-index 1

# Allow the arrow key to be used immediately after changing windows
set-option -g repeat-time 0

# Set window notifications
setw -g monitor-activity on
set -g visual-activity on


set -g @plugin 'harshasrisri/tmux-powerbreeze'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'

set -g @continuum-restore 'on'

run '~/.tmux/plugins/tpm/tpm'
Add Comment
Author