Skip to content

Instantly share code, notes, and snippets.

@ftijan
Created April 14, 2023 23:03
Show Gist options
  • Select an option

  • Save ftijan/ca17bbbd57fe12186d1613c89b9071ac to your computer and use it in GitHub Desktop.

Select an option

Save ftijan/ca17bbbd57fe12186d1613c89b9071ac to your computer and use it in GitHub Desktop.
A simple tmux config file
# Remap keys
unbind-key C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Improve colors
set -g default-terminal "xterm-256color"
# Set scrollback buffer to 10000
set -g history-limit 10000
# Customize the status line
set -g status-fg green
set -g status-bg black
# enable mouse
set -g mouse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment