Skip to content

Instantly share code, notes, and snippets.

@thiago-rezende
Created February 8, 2024 19:25
Show Gist options
  • Save thiago-rezende/6f4d6ec3eccab87af19ead9a199ab24f to your computer and use it in GitHub Desktop.
Save thiago-rezende/6f4d6ec3eccab87af19ead9a199ab24f to your computer and use it in GitHub Desktop.
Simple TMUX config
# ██░ ██ ▒█████ ██▀███ █ ██ ██████
# ▓██░ ██▒▒██▒ ██▒▓██ ▒ ██▒ ██ ▓██▒▒██ ▒
# ▒██▀▀██░▒██░ ██▒▓██ ░▄█ ▒▓██ ▒██░░ ▓██▄
# ░▓█ ░██ ▒██ ██░▒██▀▀█▄ ▓▓█ ░██░ ▒ ██▒
# ░▓█▒░██▓░ ████▓▒░░██▓ ▒██▒▒▒█████▓ ▒██████▒▒
# ▒ ░░▒░▒░ ▒░▒░▒░ ░ ▒▓ ░▒▓░░▒▓▒ ▒ ▒ ▒ ▒▓▒ ▒ ░
# ▒ ░▒░ ░ ░ ▒ ▒░ ░▒ ░ ▒░░░▒░ ░ ░ ░ ░▒ ░ ░
# ░ ░░ ░░ ░ ░ ▒ ░░ ░ ░░░ ░ ░ ░ ░ ░
# ░ ░ ░ ░ ░ ░ ░ ░
#
# Filename: .tmux.conf
# GitHub: https://github.com/thiago-rezende/dotfiles
# Maintainer: Thiago Rezende <thiago.manoel.rezende@gmail.com>
# Bindings {{{
# Split Panes {{{
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# }}}
# Synchronize Panes {{{
bind S set-window-option synchronize-panes
# }}}
# Config Reload {{{
bind r source-file ~/.tmux.conf
# }}}
# Pane Switching {{{
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# }}}
# Mouse Mode {{{
set -g mouse on
# }}}
# Window Renaming {{{
set-option -g allow-rename off
# }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment