all repos

dotfiles @ 3131b20

i use rach linux btw
2 files changed, 9 insertions(+), 19 deletions(-)
tmux: remove hardcoded colors
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-04-16 17:35:54 +0300
Authored at: 2026-04-16 17:32:52 +0300
Parent: e9f99e0
M config/jj/config.toml
···
        29
        29
         llog = ["log", "-r", ".."]

      
        30
        30
         restack = ["rebase", "-d", "trunk()", "-s", "mutable_roots()", "--simplify-parents"]

      
        31
        31
         solve = ["resolve", "--tool", "mergiraf"]

      
        32
        
        -sync = ["util", "exec", "--", "sh", "-c", "jj git fetch && jj rebase -d 'trunk()'"]

      
        33
        32
         tug = ["bookmark", "advance"]

      
        34
        33
         

      
        35
        34
         [revsets]

      
M config/tmux/tmux.conf
···
        36
        36
         unbind -T copy-mode-vi MouseDragEnd1Pane

      
        37
        37
         

      
        38
        38
         bind R source-file ~/.config/tmux/tmux.conf \; display 'Reloaded tmux config'

      
        39
        
        -bind Tab last-window

      
        40
        
        -

      
        41
        39
         unbind c; bind t new-window -c "#{pane_current_path}";

      
        42
        40
         unbind <; bind < swap-window -t -1;

      
        43
        41
         unbind >; bind > swap-window -t +1;

      
        44
        42
         unbind x; bind w kill-pane;

      
        45
        43
         unbind f; bind f resize-pane -Z;

      
        46
        
        -unbind s

      
        47
        
        -bind O choose-tree;

      
        
        44
        +unbind s; bind O choose-tree;

      
        48
        45
         unbind /; bind / copy-mode;

      
        49
        46
         unbind '%'; bind n split-window -h -c "#{pane_current_path}";

      
        50
        47
         unbind '"'; bind N split-window -v -c "#{pane_current_path}";

      
        51
        48
         unbind '$'; bind r command-prompt -I "#S" "rename-session -- '%%'";

      
        52
        
        -bind = resize-pane -U 5;

      
        53
        
        -bind - resize-pane -D 5;

      
        54
        
        -

      
        55
        
        -bind C-n new-session

      
        56
        49
         

      
        57
        50
         bind -n M-1 select-window -t 1

      
        58
        51
         bind -n M-2 select-window -t 2

      ···
        74
        67
         bind -r L resize-pane -R 2

      
        75
        68
         # }}}

      
        76
        69
         # appearance {{{

      
        77
        
        -set -g mode-style "fg=#7aa2f7,bg=#16161e"

      
        78
        
        -set -g message-style "fg=#7aa2f7,bg=#3b4261"

      
        79
        
        -set -g message-command-style "fg=#7aa2f7,bg=#1a1b26"

      
        80
        
        -set -g pane-border-style "fg=#3b4261"

      
        81
        
        -set -g pane-active-border-style "fg=#7aa2f7"

      
        82
        
        -set -g status-style "fg=#7aa2f7,bg=#1a1b26"

      
        83
        
        -set -g window-status-current-style "fg=#7aa2f7"

      
        84
        
        -set -g window-status-style "fg=#c0caf5"

      
        
        70
        +set -g window-status-current-style "fg=blue,bg=default"

      
        
        71
        +set -g message-style "fg=blue,bg=default"

      
        
        72
        +set -g message-command-style "fg=blue,bg=default"

      
        
        73
        +set -g status-style "bg=default"

      
        
        74
        +set -g pane-border-style "fg=gray"

      
        
        75
        +set -g pane-active-border-style "fg=blue"

      
        85
        76
         

      
        86
        
        -set-option -g status-position top

      
        
        77
        +set -g status-position top

      
        87
        78
         set -g status-left-length 85

      
        88
        
        -set -g status-left ' #[fg=#7aa2f7,bold]  #S#[fg=#a9b1d6,nobold] #{?client_prefix,█,|} #[default]'

      
        
        79
        +set -g status-left ' #[fg=blue,bold]  #S#[fg=gray,nobold] #{?client_prefix,█,|} #[default]'

      
        89
        80
         set -g status-right ''

      
        90
        81
         # }}}

      
        91
        82
         # plugins {{{