Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ~/ cat .zshrc
- # Lines configured by zsh-newuser-install
- HISTFILE=~/.histfile
- HISTSIZE=1000
- SAVEHIST=1000
- setopt appendhistory beep notify
- unsetopt autocd extendedglob
- bindkey -e
- # End of lines configured by zsh-newuser-install
- # The following lines were added by compinstall
- zstyle :compinstall filename '/home/eddie/.zshrc'
- autoload -Uz compinit
- compinit
- # End of lines added by compinstall
- # no duplicates in history
- setopt HIST_IGNORE_DUPS
- # arrow-menu completion
- zstyle ':completion:*' menu select
- # sudo completion
- #zstyle ':completion:*:sudo:*' environ PATH="$SUDO_PATH:$PATH"
- # colors
- autoload -U colors && colors
- # prompt
- autoload -U promptinit
- promptinit
- prompt fade blue
- # aliases
- alias ls='ls --color=auto'
- alias ll='ls --color=auto -l'
- alias grep='grep --color'
- # hashes
- hash -d krimphove=/home/somewhere
- # key bindings
- bindkey "^[[1;5C" forward-word
- bindkey "^[[1;5D" backward-word
- bindkey "^[[H" beginning-of-line
- bindkey "^[[F" end-of-line
- bindkey "^[[3~" delete-char
- # don't jump over parts of a path
- export WORDCHARS=''
- source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
- source /usr/share/doc/pkgfile/command-not-found.zsh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement