aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2015-10-15 08:17:23 +0200
committerMax Christian Pohle2015-10-15 08:17:23 +0200
commit1239c1b8d6929d78cc29bce8bd8b3933a4aebb1b (patch)
tree74c8fb1ee354e20ff8eaa6f2dda560383fdf6a5c
downloadvim-1239c1b8d6929d78cc29bce8bd8b3933a4aebb1b.tar.bz2
vim-1239c1b8d6929d78cc29bce8bd8b3933a4aebb1b.zip
home repo
-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
..