mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
70 lines
1.6 KiB
Plaintext
70 lines
1.6 KiB
Plaintext
# change default meta key to same as screen
|
|
unbind C-b
|
|
unbind C-a
|
|
set -g prefix C-a
|
|
|
|
# form vim/tmux d/y buffer sync
|
|
set -g focus-events
|
|
|
|
# use a different prefix for nested
|
|
bind-key -n C-y send-prefix
|
|
|
|
# add double-tap meta key to toggle last window
|
|
bind-key C-a last-window
|
|
|
|
# create more intuitive split key combos (same as modern screen)
|
|
unbind |
|
|
bind | split-window -h
|
|
bind '\' split-window -h
|
|
bind 'C-\' split-window -h
|
|
unbind -
|
|
bind - split-window -v
|
|
unbind _
|
|
bind _ split-window -v
|
|
|
|
# vi for copy mode
|
|
setw -g mode-keys vi
|
|
|
|
# vi for command status
|
|
set -g status-keys vi
|
|
|
|
# vi keys to resize
|
|
bind -r C-k resize-pane -U 1
|
|
bind -r C-j resize-pane -D 1
|
|
bind -r C-h resize-pane -L 1
|
|
bind -r C-l resize-pane -R 1
|
|
|
|
# vi keys to navigate panes
|
|
bind -r k select-pane -U
|
|
bind -r j select-pane -D
|
|
bind -r h select-pane -L
|
|
bind -r l select-pane -R
|
|
|
|
# avoid cursor movement messing with resize
|
|
set -g repeat-time 200
|
|
|
|
# colors, clock, and stuff
|
|
#set -g default-terminal "xterm-256color" # works, but oh so wrong
|
|
#set -ga terminal-overrides ",xterm-256color*:Tc"
|
|
set -g default-terminal "screen-256color"
|
|
#set -g clock-mode-style 12
|
|
setw -g clock-mode-colour cyan
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# die, die, die (just be careful, right next to C-c)
|
|
|
|
# color the pane borders nearly invisible
|
|
# (when not using hacked tmux without them)
|
|
set -g pane-border-style "fg=#202020,bg=#202020"
|
|
set -g pane-active-border-style "fg=#202020,bg=#202020"
|
|
|
|
# color of the window selection background
|
|
set -g mode-style "bg=black"
|
|
|
|
# reload configuration
|
|
bind -r r source-file ~/.tmux-plain.conf
|
|
|
|
set -g message-style "fg=red"
|
|
set -g status off
|