-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreenrc
38 lines (31 loc) · 1.04 KB
/
screenrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# ~/.screenrc
#
# Guy Who Tweaks This File and Adds Foul Language Comments:
# -- Miles Z. Sterrett <[email protected]>
#
# Original Author: Aaron Schaefer <[email protected]>
# Created: Sat 05 Aug 2006 06:38:47 PM EDT
#
# Settings used to initialize screen sessions
term screen-256color
# Change default escape sequence from C-a to a backslash
# escape `` # default ^Aa
# Do not display the copyright page
startup_message off # default: on
# Change the number of scrollback lines
defscrollback 1000 # default: 100
# Make navigating between regions easier
bind s split
bind j focus down
bind k focus up
# Make resizing regions easier
bind = resize =
bind + resize +1
bind - resize -1
# Configure status bar at the bottom of the terminal
hardstatus alwayslastline
hardstatus string "%{= kb}[ %=%{w}%?%-Lw%?%{C}(%{W}%n*%f %t%?(%u)%?%{C})%{w}%?%+Lw%?%?%= %{b}][%{C} %Y.%m.%d %{W}%0c %{b}]"
# Turn off the fucking visual bell
vbell off
# End of file