diff options
-rw-r--r-- | config.org | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/config.org b/config.org index 48d683c..c369ce0 100644 --- a/config.org +++ b/config.org | |||
@@ -94,6 +94,22 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w | |||
94 | (concat user-emacs-directory "init.el")))) | 94 | (concat user-emacs-directory "init.el")))) |
95 | #+end_src | 95 | #+end_src |
96 | 96 | ||
97 | ** Miscellaneous bootstrappy stuff | ||
98 | |||
99 | *** Add =~/.emacs.d/lisp/= to =load-path= | ||
100 | |||
101 | #+begin_src emacs-lisp | ||
102 | (add-to-list 'load-path | ||
103 | (concat user-emacs-directory | ||
104 | (convert-standard-filename "lisp/"))) | ||
105 | #+end_src | ||
106 | |||
107 | *** Require my secrets | ||
108 | |||
109 | #+begin_src emacs-lisp | ||
110 | (require 'acdw-secrets) | ||
111 | #+end_src | ||
112 | |||
97 | * Early initiation | 113 | * Early initiation |
98 | 114 | ||
99 | #+begin_src emacs-lisp :tangle early-init.el | 115 | #+begin_src emacs-lisp :tangle early-init.el |
@@ -1107,7 +1123,8 @@ from [[https://github.com/alphapapa/unpackaged.el#org-return-dwim][unpackaged.el | |||
1107 | :straight (gemini-write | 1123 | :straight (gemini-write |
1108 | :repo "https://alexschroeder.ch/cgit/gemini-write") | 1124 | :repo "https://alexschroeder.ch/cgit/gemini-write") |
1109 | :config | 1125 | :config |
1110 | (add-to-list 'elpher-gemini-tokens '("gem.acdw.net" . "yellow-people-eater"))) | 1126 | (add-to-list 'elpher-gemini-tokens |
1127 | (acdw-secrets/elpher-gemini-tokens))) | ||
1111 | 1128 | ||
1112 | (use-package post-to-gemlog-blue | 1129 | (use-package post-to-gemlog-blue |
1113 | :straight (post-to-gemlog-blue | 1130 | :straight (post-to-gemlog-blue |