Tmux Config: update comment seperators

This commit is contained in:
Aroy-Art 2024-12-02 21:52:54 +01:00
parent 0f6f359232
commit 7ece804f21
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -4,23 +4,23 @@ bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
# Enable mouse control (clickable windows, panes, resizable panes) # Enable mouse control (clickable windows, panes, resizable panes)
#set -g mouse on #set -g mouse on
###################################################################### #####################################################################
# History limit # History limit
###################################################################### #####################################################################
set -g history-limit 500000 set -g history-limit 500000
###################################################################### #####################################################################
# Key bindings # Key bindings
###################################################################### #####################################################################
# switch panes using Alt-arrow without prefix # switch panes using Alt-arrow without prefix
################################### ##################################
bind -n M-Left select-pane -L bind -n M-Left select-pane -L
bind -n M-Right select-pane -R bind -n M-Right select-pane -R
bind -n M-Up select-pane -U bind -n M-Up select-pane -U
bind -n M-Down select-pane -D bind -n M-Down select-pane -D
###################################################################### #####################################################################
# Enable full color support # Enable full color support
###################################################################### #####################################################################
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"
set -ga terminal-overrides ",*256col*:Tc" set -ga terminal-overrides ",*256col*:Tc"