mirror of
https://github.com/adulau/dotfiles.git
synced 2024-12-22 08:46:01 +00:00
add my minimal tmux.conf with basic Screen binding
This commit is contained in:
parent
93f20e2f4e
commit
bb9adf1b4d
1 changed files with 15 additions and 0 deletions
15
.tmux.conf
Normal file
15
.tmux.conf
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
unbind C-b
|
||||||
|
unbind l
|
||||||
|
set -g prefix C-a
|
||||||
|
bind-key C-a last-window
|
||||||
|
bind r source-file ~/.tmux.conf
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
set -g history-limit 1000
|
||||||
|
|
||||||
|
# THEME
|
||||||
|
set -g status-bg black
|
||||||
|
set -g status-fg white
|
||||||
|
set -g status-interval 60
|
||||||
|
set -g status-left-length 30
|
||||||
|
set -g status-left '#[fg=green](#S) #(whoami)@#H#[default]'
|
||||||
|
set -g status-right '#[fg=yellow]#(cut -d " " -f 1-3 /proc/loadavg)#[default] #[fg=blue]%H:%M#[default]'
|
Loading…
Reference in a new issue