1 set -g default-terminal "tmux-256color"
 
   6 bind-key Escape copy-mode
 
   8 bind-key p paste-buffer
 
   9 bind-key -T copy-mode-vi 'v'      send-keys -X begin-selection
 
  10 bind-key -T copy-mode-vi 'y'      send-keys -X copy-selection
 
  11 bind-key -T copy-mode-vi 'Space'  send-keys -X halfpage-down
 
  12 bind-key -T copy-mode-vi 'Bspace' send-keys -X halfpage-up
 
  14 # extra commands for interacting with the ICCCM clipboard
 
  15 bind-key C-c run "tmux save-buffer - | xclip -i -sel clipboard"
 
  16 bind-key C-v run "tmux set-buffer \"$(xclip -o -sel clipboard)\"; tmux paste-buffer"
 
  18 # easy-to-remember split pane commands
 
  19 bind-key | split-window -h
 
  20 bind-key - split-window -v
 
  24 # moving between panes with vim movement keys
 
  25 bind-key h select-pane -L
 
  26 bind-key j select-pane -D
 
  27 bind-key k select-pane -U
 
  28 bind-key l select-pane -R
 
  30 # moving between windows with vim movement keys
 
  31 bind-key -r C-h select-window -t :-
 
  32 bind-key -r C-l select-window -t :+
 
  34 # resize panes with vim movement keys
 
  35 bind-key -r H resize-pane -L 5
 
  36 bind-key -r J resize-pane -D 5
 
  37 bind-key -r K resize-pane -U 5
 
  38 bind-key -r L resize-pane -R 5
 
  40 #TODO use THEME env somehow, see FORMATS in tmux(1)
 
  41 set -g @plugin "arcticicestudio/nord-tmux"
 
  42 run '$XDG_CONFIG_HOME/tmux/plugins/tpm/tpm'