dotfiles/zshrc
2021-04-12 17:59:21 -04:00

19 lines
323 B
Bash

bindkey -e
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "^[[3~" delete-char
path+=("~/bin")
EDITOR=vim
PROMPT="%K{blue}%F{white}%n@%m %F{#ffff00}%~%f%E%k
%F{cyan}$ %F{white}"
RPROMPT=
HISTFILESIZE=100000000
HISTSIZE=10000
setopt INC_APPEND_HISTORY
alias ls="ls --color=auto"
alias vi=vim