From a8f4ffec6aee8d1fe7edb8aba70e6b828d888d6f Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 1 Mar 2022 23:54:18 -0800 Subject: [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. --- oni-core.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'oni-core.el') 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 ;; 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) -- cgit v1.2.3-54-g00ecf