diff --git a/Xresources b/Xresources index c7e707d..be3f527 100644 --- a/Xresources +++ b/Xresources @@ -34,6 +34,8 @@ XTerm*color13: #AD7FA8 XTerm*color14: #34E2E2 XTerm*color15: #EEEEEC +XTerm*toolBar: false + /* UXTerm */ UXTerm*faceSize: 9 UXTerm*faceName: Monospace @@ -64,6 +66,8 @@ UXTerm*color13: #AD7FA8 UXTerm*color14: #34E2E2 UXTerm*color15: #EEEEEC +UXTerm*toolBar: false + /* URxvt */ URxvt*font: xft:Monospace-9 diff --git a/zsh/bindkey b/zsh/bindkey index 83eeb24..4aea150 100755 --- a/zsh/bindkey +++ b/zsh/bindkey @@ -30,6 +30,7 @@ case $TERM in bindkey '\e[c' emacs-forward-word bindkey '\e[d' emacs-backward-word bindkey '\M-B\M-^H' backward-kill-word + bindkey '\M-C\M-?' backward-kill-word ;; mlterm|kterm) bindkey '\e[H' beginning-of-line @@ -72,6 +73,9 @@ case $TERM in cygwin*) bindkey '\e[1~' beginning-of-line bindkey '\e[4~' end-of-line + bindkey '\e[1;5C' emacs-forward-word + bindkey '\e[1;5D' emacs-backward-word + bindkey '\e[3~' delete-char ;; esac