26 lines
455 B
Bash
26 lines
455 B
Bash
bindkey -e
|
|
bindkey "^[[H" beginning-of-line
|
|
bindkey "^[[F" end-of-line
|
|
bindkey "^[[3~" delete-char
|
|
|
|
|
|
path+=("$HOME/bin")
|
|
path+=("$HOME/.local/bin")
|
|
|
|
EDITOR=vim
|
|
PROMPT="%K{blue}%F{ffffff}%n@%m %~%f%E
|
|
%k%F{cyan}$%f "
|
|
RPROMPT=
|
|
|
|
HISTFILESIZE=100000000
|
|
HISTSIZE=10000
|
|
setopt INC_APPEND_HISTORY
|
|
|
|
alias ls="ls --color=auto"
|
|
alias vi=vim
|
|
|
|
# RubyGems stuff (for Jekyll, possibly other stuff):
|
|
export GEM_HOME="$HOME/software/gems"
|
|
path+=("$GEM_HOME/bin")
|
|
|