blob: e0d060d3bc8e1eb096cb4630af1601c3f0edd11a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
set -a terminal-features "xterm-256color:RGB"
set -g prefix C-SPACE
set -g base-index 1
set -g renumber-windows on
set -g mode-keys vi
set -g status-position top
set -g status-justify absolute-centre
set -g status-style "bg=default"
set -g window-status-current-style "fg=blue bg=default bold"
set -g status-right ""
set -g status-left "#S"
bind r source-file "~/.config/tmux/tmux.conf"
bind f run-shell "tmux neww ~/.local/bin/tmux-session-dispensary.sh"
# Vim key pane naviagtion
bind -r h select-pane -L
bind -r j select-pane -D
bind -r k select-pane -U
bind -r l select-pane -R
|