blob: c80ee21b99ae8c71e2e019cb1a731527d98526dd (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# added for cygwin on windows 2015-08-02@12:17:31
shell -bash
# added the bash completion with tab
# define a bigger scrollback, default is 100 lines
#defscrollback 1024
#defscrollback 4096
defscrollback 8192
encoding UTF-8
nethack on
#escape ^Ee
# on Debian backspace should send char `177':
### bindkey -k kb stuff \177
### bindkey -d -k kb stuff \010
# bindkey -d KB stuff ^H
# An alternative hardstatus to display a bar at the bottom listing the
# windownames and highlighting the current windowname in blue. (This is only
# enabled if there is no hardstatus setting for your terminal)
hardstatus on
hardstatus alwayslastline
red on blue:
hardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %l %H %{..Y} %d.%m %c "
# red on green:
### hardstatus string "%{.gW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %d.%m %c "
red on black:
### hardstatus string "%{.kw}%-w%{.rW}%n %t%{-}%+w %=%{..Y} %H %{..Y} %d.%m %c "
termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'
bind j focus down
bind k focus up
bind t focus top
bind b focus bottom
bind g hardstatus ignore
bind G hardstatus alwayslastline
bind K kill
terminfo * k1=\EOP
terminfo * k2=\EOQ
terminfo * k3=\EOR
terminfo * k4=\EOS
terminfo * k5=\E[15~
terminfo * k6=\E[17~
terminfo * k7=\E[18~
terminfo * k8=\E[19~
terminfo * k9=\E[20~
terminfo * F1=\E[23~
terminfo * F2=\E[24~
# bindkey -k k1 screen
# bindkey -k k2 title
# bindkey -k k3 other
# #bindkey -k k4 prev
# #bindkey -k k5 next
#
# bindkey -k k5 resize +3
# bindkey -k k6 resize -3
# #bindkey -k k7 resize +3
# bindkey -k k7 prev
#
# bindkey -k k8 split
# #bindkey -k k9 split
# bindkey -k k9 next
# bindkey -k k; focus
#
# bindkey -k F1 remove
# bindkey -k F2 only
#
export HOME="/home/toshiro"
|