-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
43 lines (31 loc) · 1.15 KB
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/zsh
HOMEBREW_PREFIX="/opt/homebrew"
if [[ -x $HOMEBREW_PREFIX/bin/brew ]]; then
eval "$($HOMEBREW_PREFIX/bin/brew shellenv)"
fi
export PATH="$HOME/local/bin:$HOME/bin:$PATH"
export FPATH="$HOMEBREW_PREFIX/share/zsh/site-functions:$FPATH"
######################## begin oh-my-zsh configuration ########################
# Set oh-my-zsh location.
ZSH="$HOME/.oh-my-zsh"
# Set theme to load.
ZSH_THEME="nicksay"
# Use hyphen-insensitive completion (_ and - will be interchangeable).
HYPHEN_INSENSITIVE="true"
# Change the command execution time stamp shown in the history command output.
# Example formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# Or set a custom format using the strftime format specifications.
HIST_STAMPS="yyyy-mm-dd"
# Plugins to load.
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(
google-cloud-sdk
one-password
zsh-completions
zsh-history-substring-search
)
# Ignore warnings about completion directory permissions.
ZSH_DISABLE_COMPFIX=true
# Environnment and aliases are defined in $ZSH/custom.
source "$ZSH/oh-my-zsh.sh"
######################## end oh-my-zsh configuration ########################