Last active
December 9, 2019 20:42
-
-
Save ghammock/e222abc8022a2f2431e6b0acbf41c92b to your computer and use it in GitHub Desktop.
My .screenrc 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
| # My GNU screen configuration file | |
| # Gary Hammock | |
| defscrollback 10000 | |
| termcapinfo screen-256color ti@:te@ | |
| # Lets me click on a pane to activate instead of C-a <tab>-ing everywhere. | |
| mousetrack on | |
| # I like to have four, equally-sized panes | |
| # +------------+------------+ | |
| # | | | | |
| # | | (top) | | |
| # +------------+------------+ | |
| # | | | | |
| # | | | | |
| # +------------+------------+ | |
| # | |
| split | |
| split -v | |
| focus down | |
| split -v | |
| # Create sessions in each pane. | |
| focus up | |
| focus left | |
| screen | |
| focus right | |
| screen -t top nice top | |
| focus left | |
| focus down | |
| screen | |
| focus right | |
| screen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment