aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.screenrc27
1 files changed, 27 insertions, 0 deletions
diff --git a/.screenrc b/.screenrc
new file mode 100644
index 0000000..8beaf4c
--- /dev/null
+++ b/.screenrc
@@ -0,0 +1,27 @@
1# the following two lines give a two-line status, with the current window highlighted
2hardstatus alwayslastline
3hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]'
4
5# huge scrollback buffer
6defscrollback 5000
7
8# no welcome message
9startup_message off
10
11# 256 colors
12attrcolor b ".I"
13termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm'
14defbce on
15
16# mouse tracking allows to switch region focus by clicking
17mousetrack on
18defmousetrack on
19
20# default windows
21# get rid of silly xoff stuff
22bind s split
23
24
25# Use X scrolling mechanism
26termcapinfo xterm* ti@:te@
27
..