luca
/
bootstrapper
Archived
1
0
Fork 0

clean up zshenv

This commit is contained in:
Luca Bilke 2024-11-19 14:32:37 +01:00
parent 3b7e124f0f
commit 2b86ef4a14
Signed by: luca
GPG Key ID: F6E11C9BAA7C82F5
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
[ -z "$XDG_DATA_DIRS" ] && export XDG_DATA_DIRS="/usr/local/share:/usr/share"
[ -z "$XDG_CONFIG_HOME" ] && export XDG_CONFIG_HOME="$HOME/.config"
[ -d "$XDG_CONFIG_HOME/zsh" ] && export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
[ -z "${XDG_DATA_DIRS}" ] && export XDG_DATA_DIRS="/usr/local/share:/usr/share"
[ -z "${XDG_CONFIG_HOME}" ] && export XDG_CONFIG_HOME="${HOME}/.config"
[ -d "${XDG_CONFIG_HOME}/zsh" ] && export ZDOTDIR="${XDG_CONFIG_HOME}/zsh"