blob: e87d8aa2aed3806cae267b6621d1b5fa3ade45c0 (
plain)
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
|
set -a terminal-features "screen-256color:RGB"
set -ga terminal-overrides ",*col*:Tc"
set -g allow-passthrough all
set -ga update-environment TERM
set -ga update-environment TERM_PROGRAM
set -g prefix C-SPACE
set -g default-shell "~/.nix-profile/bin/zsh"
set -g base-index 1
setw -g pane-base-index 1
set -g renumber-windows on
set -g status-position top
set -g status-justify right
set -g status-style "bg=default"
set -g window-status-current-style "fg=#b4befe bold"
set -g message-style "bg=default fg=#b4befe bold"
set -g status-right ""
set -g status-left-length 40
set -g status-left "#S "
set -g mouse on
set-option -g set-titles on
set-option -g set-titles-string "#T"
set -g visual-activity off
set -g visual-bell off
set -g visual-silence off
setw -g monitor-activity off
set -g bell-action none
setw -g mode-style 'fg=#000000 bg=#cdd6f4 bold'
set -g window-style 'bg=#151515'
set -g window-active-style 'bg=#000000'
set -g pane-border-style 'fg=#a6adc8'
set -g pane-active-border-style 'fg=#b4befe'
bind s split-window -h -c "#{pane_current_path}"
bind v split-window -v -c "#{pane_current_path}"
unbind '"'
unbind %
bind-key Tab next-window
bind-key k confirm-before -p "kill window #W? (y/n)" kill-window
bind-key c new-window
bind-key t display-popup
bind-key h select-pane -L
bind-key i select-pane -R
bind-key e select-pane -U
bind-key n select-pane -D
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
bind r source-file "~/.config/tmux/tmux.conf" \; display-message "Config reloaded"
bind b set -g status
bind g neww -n "lazygit" lazygit
bind y new-window -n "yazi" yazi
bind E show-environment -g
|