Skip to content

Configuring tmux

To modify the status bar to show the time of day but not the hostname:

$ echo 'set -g status-right "#h"' >> .tmux.conf

To have tmux use vi keys:

$ echo 'set-window-option -g mode-keys vi' >> .tmux.conf

To reload the tmux configuration:

$ tmux source-file ~/.tmux.conf