You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
455 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. bindkey -e
  2. bindkey "^[[H" beginning-of-line
  3. bindkey "^[[F" end-of-line
  4. bindkey "^[[3~" delete-char
  5. path+=("$HOME/bin")
  6. path+=("$HOME/.local/bin")
  7. EDITOR=vim
  8. PROMPT="%K{blue}%F{ffffff}%n@%m %~%f%E
  9. %k%F{cyan}$%f "
  10. RPROMPT=
  11. HISTFILESIZE=100000000
  12. HISTSIZE=10000
  13. setopt INC_APPEND_HISTORY
  14. alias ls="ls --color=auto"
  15. alias vi=vim
  16. # RubyGems stuff (for Jekyll, possibly other stuff):
  17. export GEM_HOME="$HOME/software/gems"
  18. path+=("$GEM_HOME/bin")