Created
April 2, 2013 19:03
-
-
Save pushcx/5295174 to your computer and use it in GitHub Desktop.
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
defutf8 on | |
startup_message off | |
nethack off | |
deflogin off | |
vbell_msg " bell in %n" | |
autodetach on | |
multiuser on | |
shell -$SHELL | |
defscrollback 10000 | |
hardstatus on | |
hardstatus alwayslastline "%-Lw%{= kW}%50>%n%f* %t%{-}%+Lw%<" | |
#startup windows | |
screen -t server | |
screen -t code | |
screen -t shell | |
screen -t autotest | |
monitor on | |
bind j focus down | |
bind k focus up | |
bind - resize -1 | |
bind = resize +1 | |
bind ) select 10 | |
bind ! select 11 | |
bind @ select 12 | |
bind \# select 13 | |
bind \$ select 14 | |
bind % select 15 | |
bind \^ select 16 | |
bind & select 17 | |
bind * select 18 | |
bind ) select 19 | |
################ | |
# | |
# xterm tweaks | |
# | |
#xterm understands both im/ic and doesn't have a status line. | |
#Note: Do not specify im and ic in the real termcap/info file as | |
#some programs (e.g. vi) will not work anymore. | |
termcap xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l | |
terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l | |
#80/132 column switching must be enabled for ^AW to work | |
#change init sequence to not switch width | |
termcapinfo xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l | |
# Make the output buffer large for (fast) xterms. | |
#termcapinfo xterm* OL=10000 | |
termcapinfo xterm* OL=100 | |
# tell screen that xterm can switch to dark background and has function | |
# keys. | |
termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l' | |
termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~' | |
termcapinfo xterm 'kh=\EOH:kI=\E[2~:kD=\E[3~:kH=\EOF:kP=\E[5~:kN=\E[6~' | |
# special xterm hardstatus: use the window title. | |
termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007' | |
#terminfo xterm 'vb=\E[?5h$<200/>\E[?5l' | |
termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l' | |
# emulate part of the 'K' charset | |
termcapinfo xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337' | |
# terminfo and termcap for nice 256 color terminal | |
# allow bold colors - necessary for some reason | |
attrcolor b ".I" | |
# tell screen how to set colors. AB = background, AF=foreground | |
termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' | |
# erase background with current bg color | |
defbce "on" | |
term screen-256color-bce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment