Load system specific configuration

This commit is contained in:
Marcus Kammer 2023-12-27 14:04:21 +01:00
parent 3e56bf5d55
commit afa489b550
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -91,7 +91,9 @@
;;; bundle--customfile
(when (eq system-type 'gnu/linux)
(setq custom-file "~/.emacs.d/bundle/custom_gnu.el"
browse-url-secondary-browser-function 'browse-url-firefox))
browse-url-secondary-browser-function 'browse-url-firefox)
(unless (file-directory-p "~/cl-sites/")
(async-shell-command "git clone git@git.sr.ht:~marcuskammer/cl-sites ~/cl-sites")))
(when (eq system-type 'windows-nt)
(setq explicit-shell-file-name
@ -106,6 +108,9 @@
(setq custom-file "~/.emacs.d/bundle/custom_win32_XPS8930.el"))
(when (string= system-name "EVG03435NB")
(let ((f "~/feeds.el"))
(when (file-exists-p f)
(load-file f)))
(cd "~/OneDrive - Siemens AG/")
(setq custom-file "~/.emacs.d/bundle/custom_win32_EVG03435NB.el")))