Skip to content

Instantly share code, notes, and snippets.

@olafkotur
Created January 29, 2020 14:24
Show Gist options
  • Save olafkotur/6fb219678e3bcf87257dfc86dbf2188c to your computer and use it in GitHub Desktop.
Save olafkotur/6fb219678e3bcf87257dfc86dbf2188c to your computer and use it in GitHub Desktop.
Configuration file for my Tmux preferences
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Enable mouse control (clickable windows, panes, resizable panes)
set -g mouse on
# split panes using | and -
bind | split-window -h
bind _ split-window -v
unbind '"'
unbind %
# Visual
set -g status off
set -g pane-border-style fg=cyan
set -g pane-active-border-style fg=cyan
set -g pane-active-border-style bg=default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment