emacs.d/init.el

16 lines
629 B
EmacsLisp
Raw Normal View History

2020-07-26 14:36:43 +02:00
(add-to-list 'load-path (expand-file-name "~/.emacs.d/bundle/"))
(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")
(load "bundle--mk")
(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"))
(if (file-exists-p "c:/msys64/usr/bin/unzip.exe") nil (message "unzip.exe is missing")))