March 16, 2020

Tmux Sheet Cheat

# remap prefix from 'C-b' to 'C-a' unbind C-b set-option -g prefix C-a bind-key C-a send-prefix #setting the delay between prefix and command set -s escape-time 1 #Set the base index for windows to 1 instead of 0 set -g base-index 1 bind r source-file ~/.tmux.conf #Set the default terminal mode to 256color mode set -g default-terminal "screen-256color" #SET Color for the active window setw -g window-status-current-style fg=white,bold,bg=red #Status line righ side - 31-Oct 13:37 set -g status-right "#[fg=black]%d %b %R" #Update the status line every sixty seconds set -g status-interval 60 #set the color of the window list setw -g window-status-style fg=cyan,bg=black #enable vi keys. Read more

© Vijay Ronan 2020