dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.margiolis.net/dotfiles.git
Log | Files | Refs | README | LICENSE

.tmux.conf (581B)


      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 %%'"