remove urxvt attempts at transparency + add bindkeys for zsh on xfce4-terminal
This commit is contained in:
parent
fde75da8f7
commit
f509b86e79
2 changed files with 2 additions and 3 deletions
|
@ -17,9 +17,6 @@ URxvt.iso14755: false
|
||||||
URxvt.visualBell: true
|
URxvt.visualBell: true
|
||||||
URxvt.urgentOnBell: true
|
URxvt.urgentOnBell: true
|
||||||
URxvt.cursorUnderline: true
|
URxvt.cursorUnderline: true
|
||||||
URxvt.transparent: true
|
|
||||||
URxvt.shading: 50
|
|
||||||
URxvt.blurRadius: 5x5
|
|
||||||
|
|
||||||
! urxvt perl extensions
|
! urxvt perl extensions
|
||||||
URxvt.perl-ext-common: default,matcher,clipboard
|
URxvt.perl-ext-common: default,matcher,clipboard
|
||||||
|
|
2
zshrc
2
zshrc
|
@ -48,9 +48,11 @@ PROMPT="%B%(!..%(1000#..%F{red}%n%f@))%F{blue}%m%f %~ %(1j.+%F{red}%j%f.)%(!.%F{
|
||||||
# ---> bindings
|
# ---> bindings
|
||||||
bindkey -e
|
bindkey -e
|
||||||
# home
|
# home
|
||||||
|
bindkey "^[OH" beginning-of-line # xfce4-terminal
|
||||||
bindkey "^[[H" beginning-of-line # generic
|
bindkey "^[[H" beginning-of-line # generic
|
||||||
bindkey "^[[1~" beginning-of-line # screen
|
bindkey "^[[1~" beginning-of-line # screen
|
||||||
# end
|
# end
|
||||||
|
bindkey "^[OF" end-of-line # xfce4-terminal
|
||||||
bindkey "^[[F" end-of-line # generic
|
bindkey "^[[F" end-of-line # generic
|
||||||
bindkey "^[[4~" end-of-line # screen
|
bindkey "^[[4~" end-of-line # screen
|
||||||
# pgup / pgdown
|
# pgup / pgdown
|
||||||
|
|
Loading…
Reference in a new issue