aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/.profile
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.profile')
-rw-r--r--zsh/.profile24
1 files changed, 0 insertions, 24 deletions
diff --git a/zsh/.profile b/zsh/.profile
deleted file mode 100644
index 2990dc7..0000000
--- a/zsh/.profile
+++ /dev/null
@@ -1,24 +0,0 @@
-## XDG:
-
-# I keep my XDG files in the normal place, but specifying them in an
-# environment variable makes things a little easier/clearer.
-export XDG_CONFIG_HOME="${HOME}/.config"
-export XDG_DATA_HOME="${HOME}/.local/share"
-
-## PATH:
-
-# Add composer bin to PATH
-PATH="${XDG_CONFIG_HOME}/composer/vendor/bin:${PATH}"
-# Add "$HOME/usr/bin" to $PATH because that is where I keep all of my
-# personal utilities and helper commands.
-PATH="${HOME}/usr/bin:${PATH}"
-export PATH
-
-## Dbus
-
-# Make the session bus address fixed so other processes can know where
-# to find it.
-DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/$(id -u)/bus"
-export DBUS_SESSION_BUS_ADDRESS
-
-systemctl --user import-environment PATH