Created
July 6, 2013 21:47
-
-
Save sadbox/5941419 to your computer and use it in GitHub Desktop.
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
| # Turn the visual bell off | |
| vbell off | |
| # Set up a status line at the bottom of the screen | |
| hardstatus alwayslastline | |
| hardstatus string '%{= kG}[ %{B}%H %{g}][ %{w}%{=kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g} ][ %{B}%Y-%m-%d %{W}%c %{g}]' | |
| # 10k lines of scrollback | |
| defscrollback 10000 | |
| # disable the screen startup message | |
| startup_message off | |
| # allows you to keep what was displayed on your terminal when exiting things like man, less rather than having your terminal cleared | |
| altscreen on | |
| # shows your sessions in utmp | |
| deflogin on | |
| # autodetach | |
| autodetach on | |
| # default to UTF-8 | |
| defutf8 on | |
| # Enable non-blocking mode to better cope with flaky ssh connections. | |
| defnonblock on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment