From 259a576d7e8107c6c58cfdc91573ef98b1b2e721 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Sat, 20 May 2023 00:28:50 -0700 Subject: [PATCH] Move zsh user dir default --- init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.zsh b/init.zsh index 9e08a28..6e1fc38 100644 --- a/init.zsh +++ b/init.zsh @@ -16,7 +16,7 @@ function cmd_exists { } # User configuration file -[[ -v ZSH_USER_DIR ]] || ZSH_USER_DIR="${HOME}/.zsh.d" +[[ -v ZSH_USER_DIR ]] || ZSH_USER_DIR="${HOME}/.config/zsh" # source_user_file function source_user_file { [ -e "${ZSH_USER_DIR}/${1}" ] && source "${ZSH_USER_DIR}/${1}"