summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc5
1 files changed, 3 insertions, 2 deletions
diff --git a/.zshrc b/.zshrc
index d6b03e3..24168ba 100644
--- a/.zshrc
+++ b/.zshrc
@@ -4,6 +4,7 @@ PATH="${HOME}/bin:${PATH}:/usr/local/bin"
INFOPATH="${HOME}/documents/info:${INFOPATH}"
export INFOPATH
+export BROWSER=conkeror
HISTFILE=~/.zsh/histfile
HISTSIZE=1000
@@ -91,6 +92,8 @@ bindkey "\e0F" end-of-line
bindkey "\e[H" beginning-of-line
bindkey "\e[F" end-of-line
+bindkey "^W" backward-delete-char
+
# Show syntax highlighting when we're not running in emacs
if [ -z $EMACS ]; then
source ~/.zsh/syntax-highlighting/zsh-syntax-highlighting.zsh
@@ -98,5 +101,3 @@ if [ -z $EMACS ]; then
ZSH_HIGHLIGHT_STYLES[double-hyphen-option]='fg=blue'
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=blue'
fi
-
-welcome