Guest User

Untitled

a guest
Apr 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. ########################################################
  2. # ~/.zshrc
  3. ########################################################
  4.  
  5. PATH=${PATH}
  6. export LANG=en_US.UTF-8
  7.  
  8. autoload -U compinit
  9. compinit
  10.  
  11. HISTFILE=~/.zsh_history
  12. HISTSIZE=100000
  13. SAVEHIST=100000
  14. setopt hist_ignore_dups
  15. setopt share_history
  16. alias history='history -1000'
  17.  
  18. autoload history-search-end
  19. zle -N history-beginning-search-backward-end history-search-end
  20. zle -N history-beginning-search-forward-end history-search-end
  21. bindkey "^P" history-beginning-search-backward-end
  22. bindkey "^N" history-beginning-search-forward-end
  23.  
  24. setopt auto_pushd
  25. setopt pushd_ignore_dups
  26.  
  27. export LSCOLORS=gxfxbxdxcxegedabagacad
  28. alias ls="ls -aFG"
  29. zstyle ':completion:*' list-colors $LSCOLORS
  30.  
  31. autoload colors
  32. colors
  33. PROMPT="%{${fg[green]}%}%n@%m%(!.#.$) %{${reset_color}%}"
Add Comment
Please, Sign In to add comment