-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshenv
35 lines (27 loc) · 1007 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
34
35
uname=$(uname -s)
# Load correct homebrew
if [[ "$uname" == "Darwin" ]] ; then
elif grep -q '^ID=alpine' /etc/os-release; then
elif grep -q '^ID=arch' /etc/os-release; then
else
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
fi
# Settings for ripgrep
export RIPGREP_CONFIG_PATH="$HOME/.config/ripgrep/.ripgreprc"
# FZF configurations
# Installed via brew so its already included in path
# adding config for default options
export FZF_DEFAULT_OPTS='--height 40% --layout=reverse --border --ansi'
export FZF_DEFAULT_COMMAND='fd -H -I --type f --color=always'
# for brew analytics
export HOMEBREW_NO_ANALYTICS=1
# Brewfile location
export HOMEBREW_BUNDLE_FILE="$HOME/.config/brewfile/.Brewfile"
# for elixir iex session history configs
export ERL_AFLAGS="-kernel shell_history enabled"
# starship prompt config path
export STARSHIP_CONFIG=~/.config/starship/starship.toml
# k9s config path
export K9S_CONFIG_DIR=~/.config/k9s
# Hledger
export LEDGER_FILE="$HOME/Documents/paisa/2025.journal"