15 lines
629 B
EmacsLisp
Executable file
15 lines
629 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")
|
|
(when (eq system-type 'windows-nt)
|
|
(if (file-exists-p "c:/msys64/mingw64/bin/hunspell.exe") nil (message "hunspell.exe is missing"))
|
|
(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")))
|