Last active
June 16, 2024 15:46
-
-
Save dobrowins/7b2db80ea5f698958c07832868121b11 to your computer and use it in GitHub Desktop.
.tmux.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -s set-clipboard on | |
set -g mouse off | |
set -g status-right '%d-%m-%Y %H:%M ' | |
set-option -g allow-rename off | |
set-option -g focus-events on | |
set-option -g default-terminal "screen-256color" | |
set -ag terminal-overrides ',xterm-256color:Tc' | |
set-option -sg escape-time 10 | |
# switch panes using Alt-arrow without prefix | |
bind -n M-h select-pane -L | |
bind -n M-l select-pane -R | |
bind -n M-k select-pane -U | |
bind -n M-j select-pane -D | |
# change leader | |
unbind C-b | |
set -g prefix C-Space | |
bind-key C-Space send-prefix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment