-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.profile
More file actions
50 lines (39 loc) · 1.01 KB
/
.profile
File metadata and controls
50 lines (39 loc) · 1.01 KB
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
41
42
43
44
45
46
47
48
49
50
export TERMINAL=alacritty
export TERM=alacritty
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH"
fi
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH"
fi
# preferred editor for local and remote sessions
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='nvim'
else
export EDITOR='nvim'
fi
# kensington trackball config
eval "~/.device/trackball.sh"
# cursor controls
eval "xbindkeys"
# fnm
export PATH="$HOME/.local/share/fnm:$PATH"
eval "$(fnm env --multi 2>/dev/null)"
# pnpm
export PNPM_HOME="$HOME/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# flyctl
export FLYCTL_INSTALL="/home/g/.fly"
export PATH="$FLYCTL_INSTALL/bin:$PATH"
. "/home/g/.deno/env"
# deno
if [[ ":$FPATH:" != *":/home/g/.zsh/completions:"* ]]; then export FPATH="/home/g/.zsh/completions:$FPATH"; fi
. "/home/g/.deno/env"
# go pkgs
export PATH=$PATH:$HOME/go/bin
# opencode
export PATH=/home/g/.opencode/bin:$PATH