2020-07-26 14:36:43 +02:00
|
|
|
(add-to-list 'load-path (expand-file-name "~/.emacs.d/bundle/"))
|
2020-11-18 15:27:56 +01:00
|
|
|
(load "bundle--defaults")
|
2022-05-06 19:31:15 +02:00
|
|
|
(load "bundle--encoding")
|
|
|
|
(load "bundle--holidays")
|
2020-07-26 14:36:43 +02:00
|
|
|
(load "bundle--server")
|
2023-02-06 16:27:42 +01:00
|
|
|
(load "bundle--customfile")
|
2020-08-20 18:47:45 +02:00
|
|
|
(load "bundle--package")
|
2022-05-06 19:31:15 +02:00
|
|
|
(load "bundle--org")
|
2022-10-24 10:18:36 +02:00
|
|
|
(load "bundle--ux")
|
2020-10-29 15:40:29 +01:00
|
|
|
(load "bundle--latex")
|
2020-11-03 20:27:27 +01:00
|
|
|
(load "bundle--mk")
|
2023-02-12 15:28:20 +01:00
|
|
|
(when (eq system-type 'windows-nt)
|
|
|
|
(if (file-exists-p "c:/msys64/mingw64/bin/hunspell.exe") nil (message "hunspell.exe is missing"))
|
2023-02-13 12:10:31 +01:00
|
|
|
(if (file-exists-p "c:/msys64/ucrt64/bin/hunspell.exe") nil (message "hunspell.exe is missing"))
|
2023-02-12 15:28:20 +01:00
|
|
|
(if (file-exists-p "c:/msys64/usr/bin/unzip.exe") nil (message "unzip.exe is missing")))
|