emacs.d/init.el
2023-09-10 11:15:29 +02:00

16 lines
673 B
EmacsLisp
Executable file

(add-to-list 'load-path (expand-file-name "~/.emacs.d/bundle/"))
(load "bundle--defaults")
(load "bundle--encoding")
(load "bundle--holidays")
(load "bundle--server")
(load "bundle--customfile")
(load "bundle--package")
(load "bundle--org")
(load "bundle--ux")
(load "bundle--latex")
(load "bundle--mk")
(load "bundle--linux")
(when (eq system-type 'windows-nt)
(if (null (file-exists-p "c:/msys64/mingw64/bin/hunspell.exe")) (message "hunspell.exe is missing") nil)
(if (null (file-exists-p "c:/msys64/ucrt64/bin/hunspell.exe")) (message "hunspell.exe is missing") nil)
(if (null (file-exists-p "c:/msys64/usr/bin/unzip.exe")) (message "unzip.exe is missing") nil))