-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.profile
More file actions
23 lines (19 loc) · 823 Bytes
/
.profile
File metadata and controls
23 lines (19 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
if command -v keychain >/dev/null; then
eval $(keychain --eval -Q --quiet ~/.ssh/id_rsa ~/.radicle/keys/radicle ~/.ssh/alexis.radiant.computer)
fi
export PATH=~/bin:~/.local/bin:~/.yarn/bin:~/.gcloud/bin:~/.cabal/bin:~/.radicle/bin:~/.cargo/bin:~/.gem/ruby/2.6.0/bin:~/.npm-packages/bin:$PATH
export PATH=$PATH:~/.foundry/bin
export PATH=$PATH:~/.local/share/gem/ruby/3.0.0/bin
export NODE_PATH=/usr/lib/node_modules
export EDITOR=nvim
export VISUAL=nvim
export MOZ_USE_XINPUT2=1 # Pixel scrolling in Firefox
export RIPGREP_CONFIG_PATH=$HOME/.rgrc
export NNN_FIFO=/tmp/nnn.fifo
export CARGO_BUILD_JOBS=12
export XCURSOR_SIZE=42
if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then
. ~/.nix-profile/etc/profile.d/nix.sh;
fi # added by Nix installer
export LD_LIBRARY_PATH="/opt/cuda/lib64:$LD_LIBRARY_PATH"