Created
November 17, 2021 10:22
-
-
Save Vitsen15/58198324896e8564a6ade41042b1ddbb to your computer and use it in GitHub Desktop.
tmux configuration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 '%%'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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