29 lines
603 B
Plaintext
29 lines
603 B
Plaintext
HISTFILE=~/.histfile
|
|
HISTSIZE=5000
|
|
SAVEHIST=10000
|
|
bindkey -e # emacs bindings
|
|
|
|
# The following lines were added by compinstall
|
|
zstyle :compinstall filename '/home/chun/.zshrc'
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
# End of lines added by compinstall
|
|
|
|
# Simple prompt
|
|
PROMPT='%F{magenta}%* %F{cyan}%~ %(?.%F{green}.%F{red})%#%f '
|
|
|
|
alias ls='ls --color=auto'
|
|
alias vim='nvim'
|
|
alias ..='cd ..'
|
|
alias ...='cd ../..'
|
|
alias ....='cd ../../..'
|
|
alias .....='cd ../../../..'
|
|
alias ......='cd ../../../../..'
|
|
|
|
# Fun tools
|
|
alias transcat='queercat -f transgender'
|
|
alias bicat='queercat -f bisexual'
|
|
|
|
source <(fzf --zsh)
|