Advertisement
Guest User

Untitled

a guest
Apr 11th, 2016
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.21 KB | None | 0 0
  1. ~/ cat .zshrc
  2. # Lines configured by zsh-newuser-install
  3. HISTFILE=~/.histfile
  4. HISTSIZE=1000
  5. SAVEHIST=1000
  6. setopt appendhistory beep notify
  7. unsetopt autocd extendedglob
  8. bindkey -e
  9. # End of lines configured by zsh-newuser-install
  10. # The following lines were added by compinstall
  11. zstyle :compinstall filename '/home/eddie/.zshrc'
  12.  
  13. autoload -Uz compinit
  14. compinit
  15. # End of lines added by compinstall
  16.  
  17.  
  18. # no duplicates in history
  19. setopt HIST_IGNORE_DUPS
  20.  
  21. # arrow-menu completion
  22. zstyle ':completion:*' menu select
  23. # sudo completion
  24. #zstyle ':completion:*:sudo:*' environ PATH="$SUDO_PATH:$PATH"
  25.  
  26. # colors
  27. autoload -U colors && colors
  28.  
  29. # prompt
  30. autoload -U promptinit
  31. promptinit
  32. prompt fade blue
  33.  
  34. # aliases
  35. alias ls='ls --color=auto'
  36. alias ll='ls --color=auto -l'
  37. alias grep='grep --color'
  38. # hashes
  39. hash -d krimphove=/home/somewhere
  40.  
  41. # key bindings
  42. bindkey "^[[1;5C" forward-word
  43. bindkey "^[[1;5D" backward-word
  44. bindkey "^[[H"    beginning-of-line
  45. bindkey "^[[F"    end-of-line
  46. bindkey "^[[3~"   delete-char
  47. # don't jump over parts of a path
  48. export WORDCHARS=''
  49.  
  50. source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  51. source /usr/share/doc/pkgfile/command-not-found.zsh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement