config

My configuration files and custom scripts.
git clone https://git.tronto.net/config
Download | Log | Files | Refs

.tmux.conf (497B)


      1 # Use Ctrl+F as lead key
      2 unbind C-b
      3 set -g prefix C-f
      4 bind-key -n C-f send-prefix
      5 
      6 # Status bar with external command
      7 set -g status-right-length 120
      8 set -g status-right "#(status)"
      9 
     10 # Copy to clipboard, not only the tmux buffer
     11 set -s copy-command "xsel -ib"
     12 
     13 # Destroy unattached session (use only as multiplexer)
     14 set -g destroy-unattached
     15 
     16 # Select and prompt for opening URLs on lead + U with external command
     17 bind u run "tmux capture-pane; tmux show-buffer | dmenu-urlselect | xargs open-url"