dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

screenrc (722B)


      1 # terminfo and termcap for nice 256 color terminal
      2 # allow bold colors - necessary for some reason
      3 attrcolor b ".I"
      4 # tell screen how to set colors. AB = background, AF=foreground
      5 termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
      6 # erase background with current bg color
      7 defbce "on" 
      8 # set TERM
      9 term screen-256color-bce
     10 
     11 # Cache 30000 lines for scroll back
     12 defscrollback 30000
     13 
     14 hardstatus alwayslastline
     15 # Very nice tabbed colored hardstatus line
     16 hardstatus string '%{= Kd} %{= Kd}%-w%{= Kr}[%{= KW}%n %t%{= Kr}]%{= Kd}%+w %-= %{KG} %H%{KW}|%{KY}%101`%{KW}|%D %M %d %Y%{= Kc} %C%A%{-}'
     17 
     18 # Hide hardstatus: ctrl-a f
     19 bind f eval "hardstatus ignore"
     20 # Show hardstatus: ctrl-a F
     21 bind F eval "hardstatus alwayslastline"