switch to using user-emacs-directory when appropriate

This commit is contained in:
2026-01-11 10:22:45 -05:00
parent 70d6266bed
commit 24ff0c980b
2 changed files with 3 additions and 4 deletions

View File

@@ -12,9 +12,8 @@
;; (setq use-package-verbose t) ;; (setq use-package-verbose t)
;; (setq use-package-compute-statistics t) ;; (setq use-package-compute-statistics t)
(add-to-list 'load-path (concat (file-name-parent-directory user-init-file) "local-lisp/")) (add-to-list 'load-path (concat user-emacs-directory "local-lisp/"))
(use-package emacs)
(setq tab-bar-show nil) (setq tab-bar-show nil)
(setq inhibit-startup-message t) (setq inhibit-startup-message t)
(setq initial-scratch-message nil) (setq initial-scratch-message nil)

View File

@@ -82,13 +82,13 @@ http_headers = {
:type 'boolean :type 'boolean
:group 'codex) :group 'codex)
(defcustom codex-sessions-file (concat (file-name-parent-directory user-init-file) "codex-sessions") (defcustom codex-sessions-file (concat user-emacs-directory "codex-sessions")
"What the default name should be fore the codex chat buffer." "What the default name should be fore the codex chat buffer."
:type 'string :type 'string
:group 'codex) :group 'codex)
(defcustom codex-sessions-history-dir (defcustom codex-sessions-history-dir
(concat (file-name-parent-directory user-init-file) "codex-sessions-history/") (concat user-emacs-directory "codex-sessions-history/")
"Directory where Codex session histories are stored." "Directory where Codex session histories are stored."
:type 'directory :type 'directory
:group 'codex) :group 'codex)