1unbind C-b
 2set -g prefix `
 3bind ` send-prefix
 4
 5set -g default-terminal "screen-256color"
 6set-window-option -g automatic-rename on
 7set-window-option -g mode-keys vi
 8set-option -g set-titles on
 9set-option -sg escape-time 10
10set-option -g mouse off
11
12set -g base-index 1
13set-window-option -g pane-base-index 1
14set -g renumber-windows on
15
16set -g status-bg '#222222'
17set -g status-fg '#ffffff'
18set -g window-status-current-format "#[fg=#000000]#[bg=#bbbbbb]#[fg=#000000]#[bg=#bbbbbb] #I:#W #[fg=#000000]#[bg=#bbbbbb]"
19
20bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard"
21
22bind-key Up    select-pane -U
23bind-key Down  select-pane -D
24bind-key Left  select-pane -L
25bind-key Right select-pane -R
26
27bind-key -r S-Up    resize-pane -U 5
28bind-key -r S-Down  resize-pane -D 5
29bind-key -r S-Left  resize-pane -L 5
30bind-key -r S-Right resize-pane -R 5
31
32bind s display-popup -d "#{pane_current_path}" -w 80% -h 80% -E bash
33bind g display-popup -d "#{pane_current_path}" -w 80% -h 80% -E lazygit
34bind h display-popup -w 80% -h 80% -E htop
35bind m display-popup -w 80% -h 80% -E mc