-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzshenv
33 lines (25 loc) · 799 Bytes
/
zshenv
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
# Disable sessions.
export SHELL_SESSIONS_DISABLE=1
# Use neovim as the visual editor.
export VISUAL=nvim
export EDITOR=$VISUAL
# Keep more history.
export HISTSIZE=4096
# Move history out of the home directory.
export HISTFILE="/tmp/.zsh_history"
# Disable less file.
export LESSHISTFILE=-
# Add asdf shims to the path.
export PATH="${ASDF_DATA_DIR:-$HOME/.asdf}/shims:$PATH"
# Access to custom executables.
export PATH="$PATH:$HOME/.configuration/bin"
# Set the ripgrep configuration path.
export RIPGREP_CONFIG_PATH="$HOME/.configuration/ripgreprc"
# No emoji for Homebrew.
export HOMEBREW_NO_EMOJI=1
# No analytics for Homebrew.
export HOMEBREW_NO_ANALYTICS=1
# No hints for Homebrew.
export HOMEBREW_NO_ENV_HINTS=1
# Disable statistics from Selenium Manager.
export SE_AVOID_STATS=true