-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.screenrc
44 lines (35 loc) · 1 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
39
40
41
42
43
44
startup_message off
caption always "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%< %{=b BW} %H %{-} %l %c %d/%m/%Y"
bindkey ^[, prev
bindkey ^[; next
shelltitle ""
defscrollback 65000
shell "/bin/zsh"
# turn off visual bell
vbell off
#termcapinfo xterm* ti@:te@
#escape ^Ss
# Scroll up
bindkey -d "^[[5S" eval copy "stuff 5\025"
bindkey -m "^[[5S" stuff 5\025
# Scroll down
bindkey -d "^[[5T" eval copy "stuff 5\004"
bindkey -m "^[[5T" stuff 5\004
# Scroll up more
bindkey -d "^[[25S" eval copy "stuff \025"
bindkey -m "^[[25S" stuff \025
# Scroll down more
bindkey -d "^[[25T" eval copy "stuff \004"
bindkey -m "^[[25T" stuff \004
# Ctrl-Left and Ctrl-Right
bindkey ^[[1;5D prev
bindkey ^[[1;5C next
#bindkey "^[k" eval "copy" "stuff ^b" # enter copy mode and move up one
#bindkey "^k" eval "copy" "stuff k" # enter copy mode and move up one
#bindkey -m "^[k" stuff ^b # move up one page
#bindkey -m "^k" stuff k # move up one line
# Disable locking screen
bind s
debug off
msgwait 0
altscreen on