diff options
author | Ryan Kavanagh <rak@rak.ac> | 2023-02-09 19:46:44 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2023-02-09 19:46:44 -0500 |
commit | 600353e45e0b3a3b2fa0d4645354c8fff5735790 (patch) | |
tree | 40027ba89b76457eb9602993ca7ee19f049ae062 | |
parent | Merge remote-tracking branch 'refs/remotes/origin/master' (diff) |
~/.emacs.d/local -> ~/.emacs.d/lisp
-rw-r--r-- | dot_emacs.d/lisp/dictem/AUTHORS (renamed from dot_emacs.d/local/dictem/AUTHORS) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/COPYING (renamed from dot_emacs.d/local/dictem/COPYING) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/NEWS (renamed from dot_emacs.d/local/dictem/NEWS) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/README (renamed from dot_emacs.d/local/dictem/README) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/TODO (renamed from dot_emacs.d/local/dictem/TODO) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/dictem-elisp.el (renamed from dot_emacs.d/local/dictem/dictem-elisp.el) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/dictem-lingvo-dsl.el (renamed from dot_emacs.d/local/dictem/dictem-lingvo-dsl.el) | 0 | ||||
-rw-r--r-- | dot_emacs.d/lisp/dictem/dictem.el (renamed from dot_emacs.d/local/dictem/dictem.el) | 0 | ||||
-rw-r--r-- | dot_emacs.tmpl | 13 |
9 files changed, 7 insertions, 6 deletions
diff --git a/dot_emacs.d/local/dictem/AUTHORS b/dot_emacs.d/lisp/dictem/AUTHORS index b4dd7b6..b4dd7b6 100644 --- a/dot_emacs.d/local/dictem/AUTHORS +++ b/dot_emacs.d/lisp/dictem/AUTHORS diff --git a/dot_emacs.d/local/dictem/COPYING b/dot_emacs.d/lisp/dictem/COPYING index bacce4d..bacce4d 100644 --- a/dot_emacs.d/local/dictem/COPYING +++ b/dot_emacs.d/lisp/dictem/COPYING diff --git a/dot_emacs.d/local/dictem/NEWS b/dot_emacs.d/lisp/dictem/NEWS index 46f946b..46f946b 100644 --- a/dot_emacs.d/local/dictem/NEWS +++ b/dot_emacs.d/lisp/dictem/NEWS diff --git a/dot_emacs.d/local/dictem/README b/dot_emacs.d/lisp/dictem/README index c1d6e78..c1d6e78 100644 --- a/dot_emacs.d/local/dictem/README +++ b/dot_emacs.d/lisp/dictem/README diff --git a/dot_emacs.d/local/dictem/TODO b/dot_emacs.d/lisp/dictem/TODO index 38b7ccf..38b7ccf 100644 --- a/dot_emacs.d/local/dictem/TODO +++ b/dot_emacs.d/lisp/dictem/TODO diff --git a/dot_emacs.d/local/dictem/dictem-elisp.el b/dot_emacs.d/lisp/dictem/dictem-elisp.el index 7ee6cbc..7ee6cbc 100644 --- a/dot_emacs.d/local/dictem/dictem-elisp.el +++ b/dot_emacs.d/lisp/dictem/dictem-elisp.el diff --git a/dot_emacs.d/local/dictem/dictem-lingvo-dsl.el b/dot_emacs.d/lisp/dictem/dictem-lingvo-dsl.el index 35f92d5..35f92d5 100644 --- a/dot_emacs.d/local/dictem/dictem-lingvo-dsl.el +++ b/dot_emacs.d/lisp/dictem/dictem-lingvo-dsl.el diff --git a/dot_emacs.d/local/dictem/dictem.el b/dot_emacs.d/lisp/dictem/dictem.el index 9581a85..9581a85 100644 --- a/dot_emacs.d/local/dictem/dictem.el +++ b/dot_emacs.d/lisp/dictem/dictem.el diff --git a/dot_emacs.tmpl b/dot_emacs.tmpl index 5cb5302..1b2fcfd 100644 --- a/dot_emacs.tmpl +++ b/dot_emacs.tmpl @@ -4,7 +4,8 @@ (require 'package) (setq package-enable-at-startup nil) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) -(add-to-list 'load-path "~/.emacs.d/local") +(let ((default-directory "~/.emacs.d/lisp/")) + (normal-top-level-add-subdirs-to-load-path)) (package-initialize) ;; Bootstrap `use-package' @@ -41,10 +42,10 @@ face-font-family-alternatives)) :custom-face (default ((t (:family {{ if (eq .chezmoi.os "openbsd") -}} - "Spleen 12x24" :height 80 ; unit is 1/10 pt - {{- else -}} - "Spleen 16x32" :height 130 ; unit is 1/10 pt - {{- end }} + "Spleen 12x24" :height 80 ; unit is 1/10 pt + {{- else -}} + "Spleen 16x32" :height 130 ; unit is 1/10 pt + {{- end }} ))))) (if (string= (system-name) "demeter.rak.ac") @@ -293,7 +294,7 @@ Extended Format date in the date field and return it as a string obeing (diary-list-entries . diary-sort-entries))) (use-package dictem - :load-path "~/.emacs.d/dictem/") + :ensure t) (use-package diminish :ensure t) |