emacs.d/init.el

17 lines
673 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")
2023-09-10 11:15:29 +02:00
(load "bundle--linux")
(when (eq system-type 'windows-nt)
2023-09-01 09:11:46 +02:00
(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))