diff options
| author | seth <[email protected]> | 2022-01-21 16:47:39 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-04 04:40:49 -0400 |
| commit | ac74db5a8fa69e5d3047b35f70c65b27dc07cfcb (patch) | |
| tree | 5b6fcdb6cbf7c8c81a8b0a745e013094bdd82793 /.bash_profile | |
| parent | e5605617b57264069374ea0753c19cd69714df6d (diff) | |
update shell dotfiles
Diffstat (limited to '.bash_profile')
| -rw-r--r-- | .bash_profile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..070ea94 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,19 @@ +# +# getchoo's bash_profile +# + + +# add user's bin directory to path +if [ -d "$HOME/.local/bin" ] +then + export PATH="$HOME/.local/bin:$PATH" +fi + +# default programs +export EDITOR='nvim' +export VISUAL='nvim' +export GPG_TTY=$TTY + +# paths +export CARGO_HOME="$HOME/.local/share/cargo" +export RUSTUP_HOME="$HOME/.local/share/rustup" |
