aboutsummaryrefslogtreecommitdiff
path: root/sh/.profile
diff options
context:
space:
mode:
authorBryson Steck <me@brysonsteck.xyz>2024-04-09 18:29:39 -0600
committerBryson Steck <me@brysonsteck.xyz>2024-04-09 18:29:39 -0600
commitc6cc202ab95e6f199e63d59ea68d4bcb39940945 (patch)
tree5b1c17cfa3eeea20b401b6dcf7b303a1556ab39d /sh/.profile
parentc1e3c46afdcb455175f0bb18b606f61c864d008a (diff)
downloaddotfiles-c6cc202ab95e6f199e63d59ea68d4bcb39940945.tar
dotfiles-c6cc202ab95e6f199e63d59ea68d4bcb39940945.tar.gz
dotfiles-c6cc202ab95e6f199e63d59ea68d4bcb39940945.tar.bz2
redid bash config and update script, experimenting with doom emacsHEADmaster
Diffstat (limited to 'sh/.profile')
-rw-r--r--sh/.profile15
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