79 lines
2.1 KiB
Text
79 lines
2.1 KiB
Text
unbind C-b
|
||
set-option -g prefix C-o
|
||
bind-key C-o send-prefix
|
||
|
||
set -s extended-keys on
|
||
set -as terminal-features 'xterm*:extkeys'
|
||
|
||
set -g default-terminal "tmux-direct"
|
||
|
||
bind s split-window -v
|
||
bind v split-window -h
|
||
bind l list-sessions
|
||
bind enter display-popup -E "tmux list-sessions | sed -E 's/:.*$//' | grep -v \"^$(tmux display-message -p '#S')\$\" | fzf --reverse | xargs tmux switch-client -t"
|
||
bind b display-popup -E "lookmarks | grep $(basename $(pwd)) | fzf --reverse | xargs ~/bin/lookmarks"
|
||
|
||
bind h select-pane -L
|
||
bind j select-pane -D
|
||
bind k select-pane -U
|
||
bind l select-pane -R
|
||
|
||
bind < resize-pane -L 1
|
||
bind > resize-pane -R 1
|
||
bind - resize-pane -D 1
|
||
bind + resize-pane -U 1
|
||
|
||
bind-key -n C-Tab next-window
|
||
bind-key -n C-S-Tab previous-window
|
||
bind-key C-l last-window
|
||
|
||
bind-key -n C-S-Left swap-window -t -1
|
||
bind-key -n C-S-Right swap-window -t +1
|
||
|
||
bind-key S-Left swap-window -t -1
|
||
bind-key S-Right swap-window -t +1
|
||
|
||
bind-key -n C-S-Up switch-client -p
|
||
bind-key -n C-S-Down switch-client -n
|
||
|
||
bind-key -n C-Left previous-window
|
||
bind-key -n C-Right next-window
|
||
bind-key y set-window-option synchronize-panes
|
||
|
||
bind-key C attach -c "#{pane_current_path}"
|
||
|
||
set -gw mouse on
|
||
set -g history-limit 15000
|
||
|
||
set -g status-justify centre
|
||
set -g status-left ""
|
||
|
||
set -g status-interval 5
|
||
set -g automatic-rename on
|
||
set -g automatic-rename-format '#{b:pane_current_path}'
|
||
|
||
set -g update-environment "SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION DBUS_SESSION_BUS_ADDRESS"
|
||
|
||
# Blinky linky
|
||
set -gw monitor-activity on
|
||
set -g visual-activity on
|
||
|
||
# Fix window numbering
|
||
|
||
set-option -g renumber-windows on
|
||
|
||
# Colours!
|
||
set-window-option -g window-status-current-format "#[fg=red]❲#[fg=white]#I#F #W#[fg=red]❳"
|
||
set-option -gw xterm-keys on
|
||
|
||
set-option -g set-titles on
|
||
|
||
set-option -g status-bg colour235
|
||
set-option -g status-fg colour136
|
||
set-option -g display-panes-active-colour colour33
|
||
set-option -g display-panes-colour colour166
|
||
set-window-option -g clock-mode-colour colour64
|
||
set-window-option -g window-status-bell-style fg=colour235,bg=colour160
|
||
set -g escape-time 0
|
||
|
||
run-shell "~/bin/tmux-statusline"
|