screenrc 660 B

12345678910111213141516171819202122232425
  1. startup_message off
  2. # Instead of "^A + key" for command (^A usually used to get to the
  3. # beginning of the line) use "^B + key"
  4. escape ^bB
  5. # Statusbar
  6. hardstatus on
  7. hardstatus alwayslastline
  8. hardstatus string "%{b kw}%H %{r}%1` %{w}| %{g}%c %{w}| %{-b kw}%u %-Lw%{= rW}%50> %n%f %t %{-}%+Lw%<"
  9. # How many lines can be scrolled back using ^A + ESC and moving the
  10. # cursor
  11. defscrollback 5000
  12. # Use 256 colors
  13. # Make sure the host terminal supports them. E.g. echo - e $TERM.
  14. # Add TERM=xterm-256color to .bashrc for example.
  15. term xterm-256color
  16. colorterm truecolor
  17. # Use bash and read the .bashrc when creating a new tab (the "-" for
  18. # this)
  19. defshell -bash