16 lines
550 B
EmacsLisp
16 lines
550 B
EmacsLisp
|
;; OS SETTINGS
|
||
|
(when (eq system-type 'gnu/linux)
|
||
|
(setq custom-file "~/.emacs.d/bundle/custom_gnu.el"))
|
||
|
|
||
|
(when (eq system-type 'windows-nt)
|
||
|
(setq custom-file "~/.emacs.d/bundle/custom_win32.el")
|
||
|
(add-to-list 'load-path (expand-file-name "~/AppData/Roaming/__secrets"))
|
||
|
(cd "~/opt")
|
||
|
(when (string= (system-name) "EVG02667NB")
|
||
|
(add-to-list 'Info-default-directory-list "~/Info")
|
||
|
(setq custom-file "~/.emacs.d/bundle/custom_win32_EVG02667NB.el"))
|
||
|
(when (string= (system-name) "XPS-8930")))
|
||
|
|
||
|
;; CUSTOM_FILE
|
||
|
(load custom-file :noerror)
|