making sure we use the right directory on each machine

This commit is contained in:
Chris Cochrun 2023-12-06 10:21:27 -06:00
parent c65beedc82
commit de803b699a
2 changed files with 6 additions and 2 deletions

View file

@ -3112,7 +3112,9 @@ Also here are some lisp specific stuff
"C-h" 'paredit-backward))
;; (remove-hook 'prog-mode-hook 'enable-paredit-mode)
(load "/home/chris/.local/share/quicklisp/clhs-use-local.el" t)
(load (if (string= system-name "kaladin")
"/home/chris/quicklisp/clhs-use-local.el"
"/home/chris/.local/share/quicklisp/clhs-use-local.el") t)
#+end_src

View file

@ -2367,7 +2367,9 @@ targets."
"C-h" 'paredit-backward))
;; (remove-hook 'prog-mode-hook 'enable-paredit-mode)
(load "/home/chris/.local/share/quicklisp/clhs-use-local.el" t)
(load (if (string= system-name "kaladin")
"/home/chris/quicklisp/clhs-use-local.el"
"/home/chris/.local/share/quicklisp/clhs-use-local.el") t)
(add-to-list 'auto-mode-alist '("\\.yuck?\\'" . lisp-data-mode))