From a90c758e8778d85fc4c0f2a18c28ede645c2bf55 Mon Sep 17 00:00:00 2001 From: Matthew Ryan DIllon Date: Mon, 7 Apr 2025 11:19:28 -0400 Subject: [PATCH] move jj config to `XDG_CONFIG_HOME` --- home/dot_zshenv.tmpl | 8 +++++--- .../private_jj => private_dot_config/jj}/config.toml.tmpl | 0 2 files changed, 5 insertions(+), 3 deletions(-) rename home/{private_Library/private_Application Support/private_jj => private_dot_config/jj}/config.toml.tmpl (100%) diff --git a/home/dot_zshenv.tmpl b/home/dot_zshenv.tmpl index af506c5..acd3481 100644 --- a/home/dot_zshenv.tmpl +++ b/home/dot_zshenv.tmpl @@ -79,7 +79,9 @@ for fp in $check_paths; do done export -U PATH -export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc -export XDG_CONFIG_HOME=$HOME/.config -export OLLAMA_API_BASE=http://127.0.0.1:11434 +export XDG_CONFIG_HOME=$HOME/.config + +export JJ_CONFIG=$XDG_CONFIG_HOME/jj/config.toml +export OLLAMA_API_BASE=http://127.0.0.1:11434 +export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc diff --git a/home/private_Library/private_Application Support/private_jj/config.toml.tmpl b/home/private_dot_config/jj/config.toml.tmpl similarity index 100% rename from home/private_Library/private_Application Support/private_jj/config.toml.tmpl rename to home/private_dot_config/jj/config.toml.tmpl