Created
April 14, 2023 23:03
-
-
Save ftijan/ca17bbbd57fe12186d1613c89b9071ac to your computer and use it in GitHub Desktop.
A simple tmux config file
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
| # 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