mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 06:27:21 +01:00
64 lines
2.2 KiB
Bash
64 lines
2.2 KiB
Bash
# force a reload of the config file
|
|
unbind r
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
# start window numbering at 1 for easier switching
|
|
set -g base-index 1
|
|
|
|
# colors
|
|
set -g default-terminal "screen-256color"
|
|
|
|
# unicode
|
|
setw -g utf8 on
|
|
set -g status-utf8 on
|
|
|
|
# bah, C-B is ugly
|
|
unbind C-b
|
|
set -g prefix C-a
|
|
bind C-a send-prefix
|
|
|
|
# status bar config
|
|
set -g status-left "#h:[#S]"
|
|
set -g status-left-length 50
|
|
set -g status-right-length 50
|
|
#set -g status-right "⚡ #(~/bin/tmux-battery) [✉#(~/bin/imap_check.py)] %H:%M %d-%h-%Y"
|
|
set -g status-right "%H:%M %d-%h-%Y"
|
|
setw -g window-status-current-format "|#I:#W|"
|
|
set-window-option -g automatic-rename off
|
|
|
|
# listen to alerts from all windows
|
|
set -g bell-action any
|
|
|
|
# sessions
|
|
# bind Y source-file ~/.tmux/work
|
|
|
|
# This tmux statusbar config was created by tmuxline.vim
|
|
# on Mon, 15 Dec 2014
|
|
|
|
set -g status-bg "colour238"
|
|
set -g message-command-fg "colour249"
|
|
set -g status-justify "left"
|
|
set -g status-left-length "100"
|
|
set -g status "on"
|
|
set -g pane-active-border-fg "colour150"
|
|
set -g message-bg "colour237"
|
|
set -g status-right-length "100"
|
|
set -g status-right-attr "none"
|
|
set -g message-fg "colour249"
|
|
set -g message-command-bg "colour237"
|
|
set -g status-attr "none"
|
|
set -g status-utf8 "on"
|
|
set -g pane-border-fg "colour237"
|
|
set -g status-left-attr "none"
|
|
setw -g window-status-fg "colour150"
|
|
setw -g window-status-attr "none"
|
|
setw -g window-status-activity-bg "colour238"
|
|
setw -g window-status-activity-attr "none"
|
|
setw -g window-status-activity-fg "colour150"
|
|
setw -g window-status-separator ""
|
|
setw -g window-status-bg "colour238"
|
|
set -g status-left "#[fg=colour236,bg=colour150] #S #[fg=colour150,bg=colour238,nobold,nounderscore,noitalics]»"
|
|
set -g status-right "#[fg=colour237,bg=colour238,nobold,nounderscore,noitalics]«#[fg=colour249,bg=colour237] %Y-%m-%d « %H:%M #[fg=colour150,bg=colour237,nobold,nounderscore,noitalics]«#[fg=colour236,bg=colour150] #h "
|
|
setw -g window-status-format "#[fg=colour150,bg=colour238] #I »#[fg=colour150,bg=colour238] #W "
|
|
setw -g window-status-current-format "#[fg=colour238,bg=colour237,nobold,nounderscore,noitalics]»#[fg=colour249,bg=colour237] #I »#[fg=colour249,bg=colour237] #W #[fg=colour237,bg=colour238,nobold,nounderscore,noitalics]»"
|