dot/etc/tmux.conf

46 lines
933 B
Plaintext

set -g mouse on
set -g prefix C-a
set -g base-index 1
setw -g pane-base-index 1
set-option -g status-position top
set-option -g set-titles on
set-option -g set-titles-string '[#S:#I] #W'
set-window-option -g automatic-rename on
set-option -g status-bg "#070707"
set-option -g status-fg "#969896"
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*col*:Tc"
unbind c
bind c new-window
bind C-c new-window
unbind &
bind k confirm-before kill-window
bind C-k confirm-before kill-window
unbind l
bind C-a last-window
unbind C-b
bind a send-prefix
unbind n
bind n next-window
bind C-n next-window
unbind p
bind p previous-window
bind C-p previous-window
unbind d
bind d detach
bind C-d detach
set-option escape-time 0
unbind [
bind Escape copy-mode
unbind %
bind h split-window -h
bind C-h split-window -h
unbind "'"
bind v split-window -v
bind C-v split-window -v
bind / command-prompt "split-window 'exec man %%'"