This repository has been archived on 2025-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotbare/.zshrc.custom
2025-05-02 21:26:43 -04:00

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