]> git.phdru.name Git - dotfiles.git/blob - .screenrc
.screenrc: Allow virtual alternate screen
[dotfiles.git] / .screenrc
1 # Allow virtual alternate screen
2 altscreen on
3
4 # detach on hangup
5 autodetach on
6
7 # status line at the bottom of terminal
8 # display numbers and titles:
9 # for inactive windows - black on cyan
10 # for active window - white on blue
11 hardstatus alwayslastline
12 hardstatus string "%{= ck}%-w%{= bw}%n %t%{-}%+w %-="
13
14 deflogin on
15
16 # set every new windows hardstatus line to somenthing descriptive
17 # defhstatus "screen: ^E (^Et)"
18
19 defscrollback 1000
20
21 # emulate .logout message
22 pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended."
23
24 # make the shell in every window a login shell
25 shell -$SHELL
26
27 # shelltitle '> |bash'
28 # shelltitle '$ |sh'
29 # shelltitle '# |root sh'
30
31 # don't display the copyright page
32 startup_message off
33
34 # no annoying audible bell, please
35 #vbell on
36
37 # don't kill window after the process died
38 # zombie "^["
39
40 ################
41 #
42 # xterm tweaks
43 #
44
45 # advertise hardstatus support to $TERMCAP
46 # termcapinfo  * '' 'hs:ts=\E_:fs=\E\\:ds=\E_\E\\'
47
48 # do not confuse Solaris :)
49 #term vt100
50
51 # xterm understands both im/ic and doesn't have a status line.
52 # note: do not specify im and ic in the real termcap/info file as
53 # some programs (e.g. vi) will not work anymore.
54 #termcap  xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l
55 #terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l
56
57 # 80/132 column switching must be enabled for ^AW to work
58 # change init sequence to not switch width
59 #termcapinfo  xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l
60
61 # make the output buffer large for (fast) xterms.
62 #termcapinfo xterm* OL=10000
63
64 # tell screen that xterm can switch to dark background and has function keys
65 #termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l'
66 #termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~'
67 #termcapinfo xterm 'kh=\E[1~:kI=\E[2~:kD=\E[3~:kH=\E[4~:kP=\E[H:kN=\E[6~'
68
69 # special xterm hardstatus: use the window title.
70 #termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]0;screen\007'
71
72 # our xterm has colors! (rxvt, too)
73 #termcap  xterm 'AF=\E[3%dm:AB=\E[4%dm'
74 #terminfo xterm 'AF=\E[3%p1%dm:AB=\E[4%p1%dm'
75
76 #terminfo xterm 'vb=\E[?5h$<200/>\E[?5l'
77 #termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l'
78
79 # emulate part of the 'K' charset
80 #termcapinfo   xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337'
81
82 ################
83 #
84 # other terminals
85 #
86
87 # extend the vt100 desciption by some sequences.
88 #termcap  vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC
89 #terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC
90
91 # https://savannah.gnu.org/bugs/?14930
92 #termcapinfo linux|xterm|rxvt|xterm-color ti@:te@:XT
93
94 ################
95 #
96 # keybindings
97 #
98
99 # remove some stupid / dangerous key bindings
100 bind h
101 bind ^h
102 bind k
103 bind ^k
104 bind z
105 bind ^z
106 bind .
107 bind \\
108 bind ^\
109 # make them better
110 #bind 'I' login on
111 #bind 'O' login off
112
113 # yet another hack:
114 # prepend/append register [/] to the paste if ^a^] is pressed.
115 # this lets me have autoindent mode in vi.
116 #register [ "\033:se noai\015a"
117 #register ] "\033:se ai\015a"
118 #bind ^] paste [.]
119
120 # on backspace send ^H
121 bindkey -d -k kb stuff "\010"