diff options
-rw-r--r-- | config.org | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/config.org b/config.org index 172392b..8e31095 100644 --- a/config.org +++ b/config.org | |||
@@ -4,7 +4,7 @@ | |||
4 | #+EXPORT_FILE_NAME: README.md | 4 | #+EXPORT_FILE_NAME: README.md |
5 | #+OPTIONS: toc:nil | 5 | #+OPTIONS: toc:nil |
6 | #+BANKRUPTCY_COUNT: 3 | 6 | #+BANKRUPTCY_COUNT: 3 |
7 | #+Time-stamp: <2020-12-10 19:54:27 acdw> | 7 | #+Time-stamp: <2020-12-10 22:55:25 acdw> |
8 | 8 | ||
9 | Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. | 9 | Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. |
10 | 10 | ||
@@ -14,19 +14,19 @@ Let’s configure Emacs using Org mode, they said. It’ll be fun, they said. | |||
14 | 14 | ||
15 | #+begin_src emacs-lisp | 15 | #+begin_src emacs-lisp |
16 | (let ((win-downloads "c:/Users/aduckworth/Downloads")) | 16 | (let ((win-downloads "c:/Users/aduckworth/Downloads")) |
17 | (dolist (path `(;; Linux | 17 | (dolist (path (list ;; Linux |
18 | ,(expand-file-name "bin" | 18 | (expand-file-name "bin" |
19 | user-emacs-directory) | 19 | user-emacs-directory) |
20 | ,(expand-file-name "~/bin") | 20 | (expand-file-name "~/bin") |
21 | ,(expand-file-name "~/.local/bin") | 21 | (expand-file-name "~/.local/bin") |
22 | ,(expand-file-name "~/Scripts") | 22 | (expand-file-name "~/Scripts") |
23 | ;; Windows | 23 | ;; Windows |
24 | ,(expand-file-name "emacs/bin" | 24 | (expand-file-name "emacs/bin" |
25 | win-downloads) | 25 | win-downloads) |
26 | ,(expand-file-name "PortableGit/bin" | 26 | (expand-file-name "PortableGit/bin" |
27 | win-downloads) | 27 | win-downloads) |
28 | ,(expand-file-name "PortableGit/usr/bin" | 28 | (expand-file-name "PortableGit/usr/bin" |
29 | win-downloads))) | 29 | win-downloads))) |
30 | (when (file-exists-p path) | 30 | (when (file-exists-p path) |
31 | (add-to-list 'exec-path path)))) | 31 | (add-to-list 'exec-path path)))) |
32 | #+end_src | 32 | #+end_src |