emacs.d/init.el

20 lines
451 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/"))
2023-10-04 11:32:38 +02:00
(require 'server)
(or (eq (server-running-p) t)
(server-start))
2023-10-04 12:22:36 +02:00
(load "bundle--general")
(load "bundle--gui")
2020-08-20 18:47:45 +02:00
(load "bundle--package")
2023-10-04 12:22:36 +02:00
(load "bundle--irc")
(load "bundle--news")
(load "bundle--calendar")
2023-10-04 11:32:38 +02:00
(load "bundle--email")
2022-05-06 19:31:15 +02:00
(load "bundle--org")
2022-10-24 10:18:36 +02:00
(load "bundle--ux")
(load "bundle--mk")
2023-10-04 11:32:38 +02:00
(load "bundle--linux")
2023-10-17 11:03:46 +02:00
(let ((f "~/feeds.el"))
(when (file-exists-p f)
(load-file f)))