all repos — dotfiles @ main

fresh dotfiles, neurotically curated

.tmux.conf

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
# Global opts
set -g base-index 1
setw -g pane-base-index 1
setw -g mode-keys vi
set-option -sg escape-time 0
set -s escape-time 0
set-option -g renumber-windows on

# use vim-like keys for splits and windows
bind-key \\ split-window -h -c "#{pane_current_path}"
bind-key - split-window -v -c "#{pane_current_path}"
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R

# shortcuts
bind-key r source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."

# colors hurt my eyes
set -g status-bg black
set -g status-fg white