dotfiles/zshrc

31 lines
559 B
Bash
Raw Normal View History

2019-08-18 14:05:36 +02:00
# zmodload zsh/zprof
2019-08-18 02:07:17 +02:00
# https://github.com/sindresorhus/pure
autoload -U promptinit; promptinit
prompt pure
# CASE_SENSITIVE="true"
DISABLE_UPDATE_PROMPT="true"
DISABLE_AUTO_TITLE="true"
ENABLE_CORRECTION="true"
HIST_STAMPS="yyyy-mm-dd"
2019-08-18 14:05:36 +02:00
# https://carlosbecker.com/posts/speeding-up-zsh/
autoload -Uz compinit
for dump in ~/.zcompdump(N.mh+24); do
compinit
done
compinit -C
2019-08-18 02:07:17 +02:00
# Oh My Zsh
export ZSH="/Users/m/.oh-my-zsh"
ZSH_THEME=""
plugins=(git)
source $ZSH/oh-my-zsh.sh
# User configuration
source ~/.exports
source ~/.aliases
2019-08-18 14:05:36 +02:00
source ~/.private
# zprof