Clean up and expand tmux config
This commit is contained in:
parent
674cb85503
commit
067c390434
1 changed files with 20 additions and 8 deletions
28
tmux.conf
28
tmux.conf
|
@ -1,19 +1,31 @@
|
|||
set-option -g prefix C-f
|
||||
set-option -g exit-unattached off
|
||||
set-option -g default-terminal "screen-256color"
|
||||
set-option -g set-titles off
|
||||
set-option -g visual-bell off
|
||||
set-option -g history-limit 10000
|
||||
# tmux config
|
||||
# Eryn Wells <eryn@erynwells.me>
|
||||
|
||||
set -g prefix C-f
|
||||
|
||||
set -g exit-unattached off
|
||||
|
||||
set -g default-terminal "screen-256color"
|
||||
set -g history-limit 10000
|
||||
|
||||
# Bells from everywhere
|
||||
set -g bell-action any
|
||||
set -g visual-bell off
|
||||
|
||||
# Pass xterm titles through
|
||||
set -g set-titles on
|
||||
set -g set-titles-string "#T"
|
||||
|
||||
set-option -g mode-keys vi
|
||||
|
||||
# Start window and pane indexing from 1 instead of 0
|
||||
set-option -g base-index 1
|
||||
set-option -g pane-base-index 1
|
||||
|
||||
set-option -g status-bg green
|
||||
|
||||
set-window-option -g alternate-screen on
|
||||
setw -g alternate-screen on
|
||||
|
||||
set-window-option -g clock-mode-style 24
|
||||
setw -g clock-mode-style 24
|
||||
|
||||
bind-key C-a last-window
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue