-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathzshrc
executable file
·33 lines (28 loc) · 1.07 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
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <[email protected]>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
export gzn="$HOME/.gzn/"
# Customize to your needs...
for config_file ($HOME/.gzn/zsh/*.zsh) source $config_file
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
export PATH="/usr/local/opt/openjdk/bin:$PATH"
# The following lines were added by compinstall
zstyle ':completion:*:argument' auto-description '%d -ifile'
zstyle ':completion:*:argument' format '%d'
zstyle ':completion:*:argument' group-name ''
zstyle ':completion:*:argument' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*:argument' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*:argument' use-compctl false
zstyle ':completion:*:argument' verbose true
zstyle :compinstall filename '$HOME/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall