From 70b4bad24d10741f140c6037e8f2d152a0db1b48 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 26 Dec 2020 23:14:40 -0800 Subject: Reorganize zsh/profile --- zsh/profile.org | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/zsh/profile.org b/zsh/profile.org index f537524..ec44433 100644 --- a/zsh/profile.org +++ b/zsh/profile.org @@ -1,4 +1,9 @@ -* XDG +* Variables + +Here we set some important variables that are used by other parts of the +configuration. + +** XDG I keep my XDG files in the normal place, but specifying them in an environment variable makes things a little easier/clearer. @@ -15,7 +20,7 @@ export XDG_DATA_HOME="${HOME}/.local/share" #+END_SRC -* PATH +** PATH Add composer binaries to PATH. @@ -36,7 +41,7 @@ export PATH #+END_SRC -* Dbus +** Dbus Make the session bus address fixed so other processes can know where to find it. @@ -51,6 +56,14 @@ export DBUS_SESSION_BUS_ADDRESS #+END_SRC +** .Net + +I don't want to send any telemetry to Microsoft about my usage of the ~dotnet~ tool. + +#+begin_src sh + export DOTNET_CLI_TELEMETRY_OPTOUT 1 +#+end_src + * Systemd Import some variables into the systemd environment so that services -- cgit v1.2.3-54-g00ecf