I have no idea why this happened
This commit is contained in:
parent
e1984707ef
commit
a470a4a297
2 changed files with 24 additions and 1 deletions
9
init.el
9
init.el
|
@ -352,7 +352,8 @@
|
|||
(load-file "~/.emacs.d/mail.el")
|
||||
(require 'mu4e)
|
||||
(setq send-mail-function 'smtpmail-send-it)
|
||||
(load-file "~/.emacs.d/custom/dwpost.el"))
|
||||
;; (load-file "~/.emacs.d/custom/dwpost.el")
|
||||
)
|
||||
|
||||
;; Aesthetics
|
||||
|
||||
|
@ -409,6 +410,12 @@
|
|||
|
||||
;; Startup
|
||||
|
||||
(defun load-directory (dir)
|
||||
(let ((load-it (lambda (f)
|
||||
(load-file (concat (file-name-as-directory dir) f)))))
|
||||
(mapc load-it (directory-files dir nil "\\.el$"))))
|
||||
(load-directory "~/.emacs.d/custom/")
|
||||
|
||||
(setq initial-major-mode 'org-mode)
|
||||
|
||||
(unless (iswin)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue