22 lines
460 B
Text
22 lines
460 B
Text
# Enable mouse
|
|
set -g mouse on
|
|
|
|
# Theming and layout
|
|
set-option -g default-terminal screen-256color
|
|
set -g status-position top
|
|
|
|
# Windows and panes
|
|
set -g base-index 1
|
|
setw -g pane-base-index 1
|
|
set-window-option -g pane-base-index 1
|
|
set-option -g renumber-windows 1
|
|
|
|
# Shell
|
|
set-option -g default-shell $SHELL
|
|
set-option -g default-command $SHELL
|
|
|
|
# Environment
|
|
set-environment -g TMUX_DATA_DIR "${HOME}/.local/share/tmux"
|
|
|
|
# Ohers
|
|
set -g history-limit 100000
|