19 lines
311 B
Plaintext
19 lines
311 B
Plaintext
HISTFILE=~/.histfile
|
|
|
|
setopt nomatch
|
|
unsetopt autocd beep
|
|
bindkey -v
|
|
|
|
# set custom zsh prompt
|
|
setopt PROMPT_SUBST
|
|
PROMPT='%n@%m: ${(%):-%~} '
|
|
# zsh prompt colors
|
|
PROMPT="%F{green}$PROMPT%f"
|
|
|
|
# ctrl + ->/<- move keybinds
|
|
bindkey "^[[1;5C" forward-word
|
|
bindkey "^[[1;5D" backward-word
|
|
|
|
# cp -> rsync
|
|
alias cp=cpv
|