URI:
       tmux: fix order - dotfiles - 🍚 personal arsenal of "rice"
  HTML git clone https://git.drkhsh.at/dotfiles.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 47165bf61d3ddc2fa082e46ab0c5becbcd3d7064
   DIR parent 1a28f7595754e7b14f2f254156edf3d25a84f8b7
  HTML Author: drkhsh <drkhsh@escpe.net>
       Date:   Wed, 25 Sep 2024 12:44:00 +0200
       
       tmux: fix order
       
       Diffstat:
         M tmux/.config/tmux/tmux.conf         |      46 ++++++++++++++-----------------
       
       1 file changed, 20 insertions(+), 26 deletions(-)
       ---
   DIR diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf
       @@ -108,44 +108,38 @@ set -ag terminal-overrides "vte*:XT:Ms=\\E]52;c;%p2%s\\7,xterm*:XT:Ms=\\E]52;c;%
        unbind p
        bind p paste-buffer -p
        
       +# titles
       +set -g set-titles on
       +set -g set-titles-string "tmux@#H - #S:#W"
       +
        # plugins
        set -g @plugin 'tmux-plugins/tpm'
        set -g @plugin 'tmux-plugins/tmux-sensible'
        set -g @plugin 'tmux-plugins/tmux-resurrect'
       +        set -g @resurrect-capture-pane-contents 'on'
       +        set -g @resurrect-strategy-vim 'session'
       +        set -g @resurrect-strategy-nvim 'session'
        set -g @plugin 'tmux-plugins/tmux-continuum'
       +        set -g @continuum-save-interval '15'
        set -g @plugin 'tmux-plugins/tmux-yank'
        set -g @plugin 'tmux-plugins/tmux-open'
        set -g @plugin 'wfxr/tmux-fzf-url'
        set -g @plugin 'aserowy/tmux.nvim'
       +        set -g @tmux-nvim-resize-keybinding-left 'M-H'
       +        set -g @tmux-nvim-resize-keybinding-down 'M-J'
       +        set -g @tmux-nvim-resize-keybinding-up 'M-K'
       +        set -g @tmux-nvim-resize-keybinding-right 'M-L'
        set -g @plugin 'MunifTanjim/tmux-mode-indicator'
       +        set -g @mode_indicator_empty_prompt ' ◇  '
       +        set -g @mode_indicator_prefix_prompt ' ◈  '
       +        set -g @mode_indicator_copy_prompt '   '
       +        set -g @mode_indicator_sync_prompt '   '
       +        set -g @mode_indicator_empty_mode_style 'bg=term,fg=color2'
       +        set -g @mode_indicator_prefix_mode_style 'bg=color2,fg=color0'
       +        set -g @mode_indicator_copy_mode_style 'bg=color10,fg=color0'
       +        set -g @mode_indicator_sync_mode_style 'bg=color6,fg=color0'
        set -g @plugin 'sainnhe/tmux-fzf'
        
       -# continuum / resurrect
       -set -g @continuum-save-interval '15'
       -set -g @resurrect-capture-pane-contents 'on'
       -set -g @resurrect-strategy-vim 'session'
       -set -g @resurrect-strategy-nvim 'session'
       -
       -# M-j conflicts with weechat, let's use shift for now
       -set -g @tmux-nvim-resize-keybinding-left 'M-H'
       -set -g @tmux-nvim-resize-keybinding-down 'M-J'
       -set -g @tmux-nvim-resize-keybinding-up 'M-K'
       -set -g @tmux-nvim-resize-keybinding-right 'M-L'
       -
       -# mode indicator
       -set -g @mode_indicator_empty_prompt ' ◇  '
       -set -g @mode_indicator_prefix_prompt ' ◈  '
       -set -g @mode_indicator_copy_prompt '   '
       -set -g @mode_indicator_sync_prompt '   '
       -set -g @mode_indicator_empty_mode_style 'bg=term,fg=color2'
       -set -g @mode_indicator_prefix_mode_style 'bg=color2,fg=color0'
       -set -g @mode_indicator_copy_mode_style 'bg=color10,fg=color0'
       -set -g @mode_indicator_sync_mode_style 'bg=color6,fg=color0'
       -
       -# titles
       -set -g set-titles on
       -set -g set-titles-string "tmux@#H - #S:#W"
       -
        # set version
        run-shell "tmux setenv -g TMUX_VERSION $(tmux -V | cut -c 6-)"