mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-21 17:27:13 +01:00
20 lines
389 B
Bash
20 lines
389 B
Bash
# 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"
|
|
|
|
# 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
|
|
source ~/.private |