37 lines
978 B
Bash
37 lines
978 B
Bash
# Source changes without restarting tmux:
|
|
# tmux source-file ~/.tmux.conf
|
|
|
|
# I don't know
|
|
set -g mouse on
|
|
|
|
# Mouse scroll speed
|
|
set -g @scroll-speed-num-lines-per-scroll 5
|
|
|
|
# Vi mode to copy things from terminal
|
|
setw -g mode-keys vi
|
|
|
|
# Count panes from 1
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
|
|
# Status bar stuff
|
|
set -g status-style fg=#9d7cd8,bg=#16161e
|
|
set-window-option -g window-status-current-style bg=#3e3158
|
|
set -g status-position top
|
|
set -g status-interval 10
|
|
set -g status-left-length 120
|
|
set -g status-left ' New: bc Ren: b, Go: b<n> '
|
|
set -g status-justify centre
|
|
set -g status-right "#( ~/tmux.sh )"
|
|
set -g status-right-length 120
|
|
|
|
# Get good colors
|
|
set-option -g default-terminal "screen-256color"
|
|
set -g default-terminal "tmux-256color"
|
|
set -ga terminal-overrides ",*256col*:Tc"
|
|
set -ga terminal-overrides '*:Ss=\E[%p1%d q:Se=\E[ q'
|
|
set-environment -g COLORTERM "truecolor"
|
|
|
|
# Display messages longer (ms)
|
|
set-option -g display-time 4000
|
|
|