diff options
-rw-r--r-- | config.org | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/config.org b/config.org index 7429b32..affa0b5 100644 --- a/config.org +++ b/config.org | |||
@@ -97,12 +97,14 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w | |||
97 | 97 | ||
98 | #+end_src | 98 | #+end_src |
99 | 99 | ||
100 | ** Add PortableGit to the =exec-path= on Windows | 100 | ** Add more paths to the =exec-path= when using Windows |
101 | 101 | ||
102 | #+begin_src emacs-lisp :tangle early-init.el | 102 | #+begin_src emacs-lisp :tangle early-init.el |
103 | (when (eq system-type 'windows-nt) | 103 | (when (eq system-type 'windows-nt) |
104 | (add-to-list 'exec-path "~/bin") | 104 | (dolist (path '("~/bin" |
105 | (add-to-list 'exec-path "C:/Users/aduckworth/Downloads/PortableGit/bin")) | 105 | "C:/Users/aduckworth/Downloads/PortableGit/bin" |
106 | "C:/Users/aduckworth/Downloads/PortableGit/usr/bin")) | ||
107 | (add-to-list 'exec-path path))) | ||
106 | #+end_src | 108 | #+end_src |
107 | 109 | ||
108 | ** Bootstrap =straight.el= | 110 | ** Bootstrap =straight.el= |