summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-12-16 08:21:31 -0600
committerCase Duckworth2020-12-16 08:21:31 -0600
commitcd1758df83a372087bdd39ff424205c877bb7e53 (patch)
tree601cfcc48db210da2f59da23ed4206ded71bdc2a /config.org
parentUpdate README (diff)
downloademacs-cd1758df83a372087bdd39ff424205c877bb7e53.tar.gz
emacs-cd1758df83a372087bdd39ff424205c877bb7e53.zip
Change exec-path order
The Git that comes with mingw doesn’t work with GUI Emacs for some reason.  So I
put PortableGit’s path first.
Diffstat (limited to 'config.org')
-rw-r--r--config.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.org b/config.org index a4ddb95..b467882 100644 --- a/config.org +++ b/config.org
@@ -23,13 +23,13 @@ Let’s configure Emacs using Org mode, they said. It’ll be fun, they said.
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"
27 win-downloads)
28 (expand-file-name "PortableGit/usr/bin"
29 win-downloads)
30 (expand-file-name "m/usr/bin" 26 (expand-file-name "m/usr/bin"
31 win-downloads) 27 win-downloads)
32 (expand-file-name "m/mingw64/bin" 28 (expand-file-name "m/mingw64/bin"
29 win-downloads)
30 (expand-file-name "PortableGit/bin"
31 win-downloads)
32 (expand-file-name "PortableGit/usr/bin"
33 win-downloads))) 33 win-downloads)))
34 (when (file-exists-p path) 34 (when (file-exists-p path)
35 (add-to-list 'exec-path path)))) 35 (add-to-list 'exec-path path))))