blob: fcd6fc794545fe4a3d99324c5788c4ba348f0acb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env zsh
# Set up nice and lengthy history
export HISTFILE="${ZDOTDIR:-$HOME}/.zsh_history"
export HISTSIZE=1000000
export SAVEHIST=1000000
# Simple prompt
PROMPT="%F{15}%K{4}%n@%M:%~%f%k "
RPROMPT="%(?.%F{10}%?.%F{9}%?)%f %T"
autoload -U compaudit compinit zrecompile
autoload -U colors && colors
|