emacs.d/init.el

25 lines
594 B
EmacsLisp
Raw Normal View History

2023-12-27 14:08:58 +01:00
;; (require 'server)
;; (or (eq (server-running-p) t)
;; (server-start))
2023-12-27 14:05:11 +01:00
(let ((bundle-dir (expand-file-name "~/.emacs.d/bundle/")))
(when (file-directory-p bundle-dir)
(add-to-list 'load-path bundle-dir)
(load "bundle--general")
(load "bundle--gui")
(load "bundle--package")
(load "bundle--lisp")
(load "bundle--irc")
(load "bundle--news")
(load "bundle--calendar")
(load "bundle--email")
(load "bundle--org")
(load "bundle--stats")
(load "bundle--ux")
(load "bundle--mk")
(load "bundle--linux")))
2024-01-08 10:41:40 +01:00
(let ((f "~/feeds.el"))
(when (file-exists-p f)
(load-file f)))