forked from elnappo/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshellrc
32 lines (23 loc) · 1.29 KB
/
shellrc
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
# User configuration
test -e $HOME/.dotfiles/extra.shell && source $HOME/.dotfiles/extra.shell
#
test -e $HOME/.dotfiles/aliases && source $HOME/.dotfiles/aliases
export EDITOR=nvim
export VISUAL=nvim
export GOPATH=$HOME/Coding/golang
export FZF_DEFAULT_COMMAND="fd --type file --color=always"
export FZF_DEFAULT_OPTS="--ansi"
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export BAT_THEME="Solarized (dark)"
export PNPM_HOME="/Users/MHuggins/Library/pnpm"
export GOPRIVATE="github.com/glg"
export GIT_TERMINAL_PROMPT=1
# export SQL_DEV_USERNAME=$(security find-generic-password -s "SQL_DEV_USERNAME" -w)
# export SQL_DEV_PASSWORD=$(security find-generic-password -s "SQL_DEV_PASSWORD" -w)
# export GITHUB_PACKAGE_REGISTRY_TOKEN=$(security find-generic-password -s "GITHUB_PACKAGE_REGISTRY_TOKEN" -w)
# export GDSWATCH_GITHUB_TOKEN=$(security find-generic-password -s "GITHUB_PACKAGE_REGISTRY_TOKEN" -w)
# export TODOIST_API_KEY=$(security find-generic-password -s "TODOIST_API_KEY" -w)
# export FZF_DEFAULT_OPTS='--height 40% --layout=reverse --border'
export GITHUB_AUTH_TOKEN=$(security find-generic-password -s "GITHUB_AUTH_TOKEN" -w)
export GLG_GITHUB_TOKEN=$(security find-generic-password -s "GITHUB_AUTH_TOKEN" -w)
export ANTHROPIC_API_KEY=$(security find-generic-password -s "avante-api-key" -w)