config/zsh/zshrc

19 lines
288 B
Bash
Raw Normal View History

2020-08-19 12:00:21 +00:00
# Generic options
setopt NOMATCH
# Maybe?
# setopt PROMPT_BANG
# History
2020-08-22 20:04:21 +00:00
setopt BANG_HIST HIST_REDUCE_BLANKS
2020-08-19 12:00:21 +00:00
# Completion
setopt ALWAYS_TO_END MARK_DIRS
# Correction
setopt CORRECT
2020-08-22 20:04:21 +00:00
# Aliases
alias ls="ls --color=auto"
alias swirc="swirc -r cren -u cren -n cren"
alias gcc="gcc -Wall"