Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. # Turn of startup (copyright notice)
  2. startup_message off
  3.  
  4. # encoding
  5. encoding UTF-8
  6.  
  7. # Turn visual bell off. This is when the screen flashes.
  8. vbell off
  9.  
  10. # If set to on, "alternate screen" support is enabled in virtual terminals, just like in xterm. Initial setting is `off'.
  11. altscreen on
  12.  
  13. # Enable the use of client (SecureCRT, ZOC, Putty etc) scrollback buffer.
  14. termcapinfo xterm* ti@:te@
  15.  
  16. # Change default scrollback to 10000
  17. defscrollback 10000
  18.  
  19. # Status line caption style and colours
  20. caption string "%?%F%{= Bk}%? %C%A %D %d-%m-%Y %{= kB} %t%= %?%F%{= Bk}%:%{= wk}%? %n "
  21. hardstatus alwayslastline
  22. hardstatus string '%{= dw}[ %{Y}%H %{w}][%= %{= dw}%?%-Lw%?%{y}(%{W}%n*%f%t%?(%u)%?%{y})%{w}%?%+Lw%?%?%= %{w}][ %{W}%c %{y}|%{W} %d/%m%{w} ]'
  23.  
  24. # Color Settings
  25. # Set TERM colours 256
  26. # Tell screen how to set colors. AB = background, AF=foreground
  27. # Erase background with current bg color
  28. # Remove bold ASCI codes
  29. term xterm-256color
  30. termcapinfo xterm 'Co#256:AB=E[48;5;%dm:AF=E[38;5;%dm'
  31. defbce "on"
  32. attrcolor b "-b"
  33.  
  34. # I like to have a handful of screens on standby
  35. screen 3
  36. screen 2
  37. screen 1
  38. screen 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement