Skip to content

Instantly share code, notes, and snippets.

@dobrowins
Last active June 16, 2024 15:46
Show Gist options
  • Save dobrowins/7b2db80ea5f698958c07832868121b11 to your computer and use it in GitHub Desktop.
Save dobrowins/7b2db80ea5f698958c07832868121b11 to your computer and use it in GitHub Desktop.
.tmux.conf
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