Created
September 16, 2010 02:03
-
-
Save cvonkleist/581842 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
escape ^]] | |
startup_message off | |
defflow auto | |
defscrollback 5000 | |
altscreen on | |
autodetach on | |
msgwait 3 | |
#change the hardstatus settings to give an window list at the bottom of the | |
#screen, with the time and date and with the current window highlighted | |
defutf8 on | |
hardstatus alwayslastline | |
hardstatus string '%{gk}[ %{G}%H %{g}][%= %{wk}%?%-Lw%?%{=b kR}(%{W}%n*%f %t%?(%u)%?%{=b kR})%{= kw}%?%+Lw%?%?%= %{g}][%{Y}%l%{g}]%{=b C}[ %m/%d %c ]%{W}' | |
startup_message off | |
term xterm-256color | |
bind P paste . | |
#ctrl-page up and page down scroll (xterm) | |
bindkey "^[[5;5~" eval "copy" "stuff ^u" | |
bindkey -m "^[[5;5~" stuff ^u | |
bindkey -m "^[[6;5~" stuff ^d | |
#ctrl-left and ctrl-right are prev/next | |
bindkey "^[[1;5D" prev | |
bindkey "^[[1;5C" next | |
# C key creates new window and prompts for its title | |
bind C eval "screen" "title" "stuff ^u" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment