Skip to content

Instantly share code, notes, and snippets.

@Vitsen15
Created November 17, 2021 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vitsen15/58198324896e8564a6ade41042b1ddbb to your computer and use it in GitHub Desktop.
Save Vitsen15/58198324896e8564a6ade41042b1ddbb to your computer and use it in GitHub Desktop.
tmux configuration.
set -g default-terminal xterm-256color
set -g xterm-keys on
set -g history-limit 8000
set -g lock-after-time 0
set -g allow-rename off
set -g renumber-windows on
unbind-key C-o
bind-key C-a last-window
bind-key / command-prompt "swap-window -t '%%'"
bind-key Home swap-window -t -1
bind-key End swap-window -t +1
bind-key '`' set -g mode-mouse on
bind-key Escape set -g mode-mouse off
bind-key m command-prompt "select-window -t '%%'"
@Vitsen15
Copy link
Author

Configuration for tmux(terminal multiplexer).

To enable custom configuration(from this file) please move .tmux.conf to your home directory and run next command:
tmux source ~/.tmux.conf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment