Created
December 1, 2022 22:11
-
-
Save connorfuhrman/8995a8d3f3104892b99a0c0f409b3eef to your computer and use it in GitHub Desktop.
GNU Screen Configuration
This file contains 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
# huge scrollback buffer | |
defscrollback 5000 | |
# no welcome message | |
startup_message off | |
# 256 colors | |
attrcolor b ".I" | |
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' | |
defbce on | |
# mouse tracking allows to switch region focus by clicking | |
mousetrack on | |
# Make BASH the default shell | |
shell "/bin/bash" | |
# Change the escape key to be Ctrl+^ (Ctrl + Shift + 6) | |
# for use mainly with emacs | |
escape ^^^ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment