-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.profile
39 lines (26 loc) · 1.05 KB
/
.profile
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
# Homebrew installation path on Apple silicon
export PATH="/opt/homebrew/bin:$PATH"
# Add support for current project Node binaries
export PATH="node_modules/.bin:$PATH"
# Prefer Rust installed with the recommended way
export PATH="$HOME/.cargo/bin:$PATH"
####################################################
### And go to other stuff!
export LANG=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export EDITOR='nvim'
# Set up better git commit message formatting in vim
export RI="--format ansi --width 70"
# Enable shell history in iex
export ERL_AFLAGS="-kernel shell_history enabled"
# Silence direnv to avoid text output when opening a new shell
export DIRENV_LOG_FORMAT=
# Load .env files automatically everywhere
export MISE_ENV_FILE=.env
# Let's use ripgrep
export FZF_DEFAULT_COMMAND='rg --files --follow 2> /dev/null'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export ZK_NOTEBOOK_DIR="$HOME/notes/"
export DOCKER_DEFAULT_PLATFORM=linux/amd64
export SSH_AUTH_SOCK=~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock