.tmux.conf (740B)
1 set -g default-terminal "st-256color" 2 3 # resize windows only when a smaller client is using a session 4 setw -g aggressive-resize on 5 6 # don't pause waiting for control chars after an esc 7 set -s escape-time 0 8 9 set -g mouse on 10 bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard' 11 12 bind h select-pane -L 13 bind j select-pane -D 14 bind k select-pane -U 15 bind l select-pane -R 16 17 # index windows starting at 1 rather than 0 18 set -g base-index 1 19 20 # open a man page in a separated split pane 21 bind m command-prompt -p "man page:" "split-window -h 'exec man %%'" 22 23 # open urls from tmux buffer 24 bind-key u \ 25 capture-pane -J \; \ 26 save-buffer /tmp/tmuxbuf \; \ 27 delete-buffer \; \ 28 split-window -l 10 "urlview /tmp/tmuxbuf"