summaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-06-05 19:12:16 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-06-05 19:12:58 -0400
commitfe3984f541bd32bdfa418afb305b614176b55ca0 (patch)
tree591c3e95a5fdc64078aad55c0d2a205a19ad985a /.bash_profile
parenta2ae7b4ab3f577826b74ee0cce9667bfac306fb9 (diff)
move more things out of home, improve configHEADmain
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile8
1 files changed, 7 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile
index bdb270d..e8ae3be 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -27,8 +27,14 @@ export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_DATA_HOME="${HOME}/.local/share"
export XDG_STATE_HOME="${HOME}/.local/state"
+# Declutter home
+export LESSHISTFILE="${XDG_STATE_HOME}/less/history"
+export NPM_CONFIG_USERCONFIG="${XDG_CONFIG_HOME}/npm/npmrc"
+export NSS_USER_DB_DIR="${XDG_DATA_HOME}/pki"
+export MYVIMRC="${XDG_CONFIG_HOME}/vim/vimrc"
+export VIMINIT="source $MYVIMRC"
+
# Auto-start wm on tty1
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]; then
exec dbus-launch mango
fi
-