Setup_-_TMUX
SETUP - TMUX apt -get install tmux
Improve colors
set -g default-terminal 'screen-256color'
Set scrollback buffer to 10000
set -g history-limit 1000000
Customize the status line
set -g status-fg green
set -g status-bg black
remap prefix from 'C-b' to 'C-a'
unbind C-b set-option -g prefix C-a bind-key C-a send-prefix
split panes using | and -
bind h split-window -h bind v split-window -v unbind '"' unbind %
don't rename windows automatically
set-option -g allow-rename off
reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf
tmux new -s HTB
Last updated
Was this helpful?