[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Definitions.
smart-documents.org
@@ -159,6 +159,43 @@
159
159
(find-file my/literate-config))
160
160
#+END_SRC
161
161
162
Added:
** Definitions
163
Added:
164
Added:
*** Usual paths
165
Added:
166
Added:
This section defines the paths that structure the overall {{{sd}}}
167
Added:
logic.
168
Added:
169
Added:
#+BEGIN_SRC emacs-lisp :tangle yes
170
Added:
(defcustom sd-path-meta
171
Added:
(concat user-emacs-directory "meta/")
172
Added:
"Directory containing the meta files.")
173
Added:
174
Added:
(defcustom sd-path-res
175
Added:
(concat user-emacs-directory "res/")
176
Added:
"Directory containing the third-party resources.")
177
Added:
#+END_SRC
178
Added:
179
Added:
** Resources
180
Added:
181
Added:
All third-party resources are saved at the following location.
182
Added:
183
Added:
*** Packages
184
Added:
185
Added:
#+BEGIN_SRC emacs-lisp :tangle yes
186
Added:
(setq package-user-dir
187
Added:
(concat sd-path-res
188
Added:
"elpa"))
189
Added:
#+END_SRC
190
Added:
191
Added:
*** Emojis
192
Added:
193
Added:
#+BEGIN_SRC emacs-lisp :tangle yes
194
Added:
(setq emojify-emojis-dir
195
Added:
(concat sd-path-res
196
Added:
"emojis"))
197
Added:
#+END_SRC
198
Added:
162
199
** Meta-files
163
200
164
201
In this section, we'll be tidying up the =.emacs.d/= directory---by