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