diff options
author | Bryson Steck <me@brysonsteck.xyz> | 2024-04-09 18:29:39 -0600 |
---|---|---|
committer | Bryson Steck <me@brysonsteck.xyz> | 2024-04-09 18:29:39 -0600 |
commit | c6cc202ab95e6f199e63d59ea68d4bcb39940945 (patch) | |
tree | 5b1c17cfa3eeea20b401b6dcf7b303a1556ab39d /sh/.profile | |
parent | c1e3c46afdcb455175f0bb18b606f61c864d008a (diff) | |
download | dotfiles-master.tar dotfiles-master.tar.gz dotfiles-master.tar.bz2 |
Diffstat (limited to 'sh/.profile')
-rw-r--r-- | sh/.profile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sh/.profile b/sh/.profile new file mode 100644 index 0000000..99da34c --- /dev/null +++ b/sh/.profile @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# +# bryson's shell-agnostic profile +# + +# shell variables +PATH=$HOME/.local/bin:$HOME/bin:$HOME/.cargo/bin:$HOME/.dotnet/tools:$HOME/bin:$HOME/.config/emacs/bin:$PATH +EDITOR=/usr/bin/vim +TERMINAL=/usr/bin/alacritty +BROWSER=/usr/bin/librewolf-bin +XZ_OPT='-9 -T0 -M 32000000000' +DOTNET_CLI_TELEMETRY_OPTOUT="true" + +# finally export all variables +export PATH EDITOR TERMINAL BROWSER XZ_OPT DOTNET_CLI_TELEMETRY_OPTOUT |