-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzprofile
40 lines (36 loc) · 2.08 KB
/
zprofile
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
if [ -d ~/.env.preferences ]; then
for FILE in $(find -L ~/.env.preferences -type f); do . $FILE; done
fi
# These environment variables are changeable by ~/.env.preferences
export LSCOLORS=$(echo ${LSCOLORS-gxfxcxdxbxegedabagacad})
export HISTCONTROL=$(echo ${HISTCONTROL-ignoredups})
export HISTSIZE=$(echo ${HISTSIZE-""})
export HISTFILESIZE=$(echo ${HISTFILESIZE-""})
export LESS=$(echo ${LESS-'-iMNRS+10'}) # DO EDIT IN VIM because verbatim insert is used
## https://qiita.com/delphinus/items/b04752bb5b64e6cc4ea9
export LESS_TERMCAP_mb=$(echo ${LESS_TERMCAP_mb-$'\E[01;31m'}) # Begins blinking.
export LESS_TERMCAP_md=$(echo ${LESS_TERMCAP_md-$'\E[01;31m'}) # Begins bold.
export LESS_TERMCAP_me=$(echo ${LESS_TERMCAP_me-$'\E[0m'}) # Ends mode.
export LESS_TERMCAP_se=$(echo ${LESS_TERMCAP_se-$'\E[0m'}) # Ends standout-mode.
export LESS_TERMCAP_so=$(echo ${LESS_TERMCAP_so-$'\E[00;47;30m'}) # Begins standout-mode.
export LESS_TERMCAP_ue=$(echo ${LESS_TERMCAP_ue-$'\E[0m'}) # Ends underline.
export LESS_TERMCAP_us=$(echo ${LESS_TERMCAP_us-$'\E[01;32m'}) # Begins underline.
export EDITOR=$(echo ${EDITOR-vim})
export IGNOREEOF=$(echo ${IGNOREEOF-10000})
export RUBY_CONFIGURE_OPTS=$(echo ${RUBY_CONFIGURE_OPTS-"--with-openssl-dir=/usr/local/opt/[email protected]"})
export LDFLAGS=$(echo ${LDFLAGS-"-L/opt/homebrew/opt/imagemagick@6/lib"})
export CPPFLAGS=$(echo ${CPPFLAGS-"-I/opt/homebrew/opt/imagemagick@6/include"})
export PKG_CONFIG_PATH=$(echo ${PKG_CONFIG_PATH-"/opt/homebrew/opt/imagemagick@6/lib/pkgconfig"})
export GIT_FETCH_PERIOD_THRESHOLD=$(echo ${GIT_FETCH_PERIOD_THRESHOLD-180})
export ZSH_AUTOSUGGEST_STRATEGY=(history completion)
export SESSION_LOG_PATH=$(echo ${SESSION_LOG_PATH-$HOME/.log/tmux})
export RIPGREP_CONFIG_PATH=$(echo ${RIPGREP_CONFIG_PATH-$HOME/.config/ripgreprc})
export DOTPATH=""
export PATH
export MANPATH
if type src-hilite-lesspipe.sh 1>/dev/null 2>/dev/null; then
export LESSOPEN='| /usr/local/bin/src-hilite-lesspipe.sh %s'
fi
if which /opt/homebrew/bin/brew 1>/dev/null 2>/dev/null; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi