aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-03-01 23:54:18 -0800
committerGravatar Tom Willemse2022-03-01 23:54:18 -0800
commita8f4ffec6aee8d1fe7edb8aba70e6b828d888d6f (patch)
treea727c386709d8b1a0ed7c11594e749bb9643ec74
parent3b29e9799feef00529717f3bd244d2bf2e0bcef9 (diff)
downloademacs-config-a8f4ffec6aee8d1fe7edb8aba70e6b828d888d6f.tar.gz
emacs-config-a8f4ffec6aee8d1fe7edb8aba70e6b828d888d6f.zip
[oni-core] Put cygwin at the end of the exec-path list on Windows
There are some programs that live in both that and some other directories that I've added on Windows. This makes sure that the cygwin ones don't overwrite everything else, since usually I use different versions like MSYS2.
-rw-r--r--oni-core.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/oni-core.el b/oni-core.el
index 1228966..9562936 100644
--- a/oni-core.el
+++ b/oni-core.el
@@ -4,8 +4,8 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2022.0301.234839
-;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch ace-window vertico marginalia orderless consult embark)
+;; Version: 2022.0301.235209
+;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard mixed-pitch ace-window vertico marginalia orderless consult embark docstr)
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -248,7 +248,7 @@ _s_: String list"
(add-to-list 'load-path (locate-user-emacs-file "vendor/p4-vc"))
(add-to-list 'exec-path "c:/Program Files/Git/bin")
(add-to-list 'exec-path "C:/Program Files/Git/usr/bin")
- (add-to-list 'exec-path "c:/cygwin64/bin")
+ (add-to-list 'exec-path "c:/cygwin64/bin" t)
(setq delete-by-moving-to-trash t)