From be7ff2f9cd6cfbf7239fb990cdd9ef290128f00f Mon Sep 17 00:00:00 2001 From: jowj Date: Tue, 23 Apr 2019 22:55:13 -0500 Subject: [PATCH] Move *nix only package to conditional to prevent issues on windows. --- applicationConfiguration/.emacs/jlj-misc.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/applicationConfiguration/.emacs/jlj-misc.el b/applicationConfiguration/.emacs/jlj-misc.el index e8817b3..35d50e1 100644 --- a/applicationConfiguration/.emacs/jlj-misc.el +++ b/applicationConfiguration/.emacs/jlj-misc.el @@ -17,6 +17,10 @@ (when (eq system-type 'darwin) (setq mac-command-modifier 'meta)) ; deal with mac command key problems: +(if (eq system-type 'windows-nt) + (message "i am windows and suck") ; deal with mac command key problems + (exec-path-from-shell-copy-env "PATH")) + (setq backup-directory-alist `(("." . "~/Nextcloud/Documents/org/.saves"))) ; deal with bullshit files in every dir. (set-frame-font "Consolas 12") ; set default font, versions of emacs may require set-default-font @@ -45,5 +49,3 @@ (global-set-key (kbd "C-<") 'mc/mark-previous-like-this) (global-set-key (kbd "C-c C-<") 'mc/mark-all-like-this) -;; shell confs -(exec-path-from-shell-copy-env "PATH") ; copy PATH from shell