45 lines
1.6 KiB
EmacsLisp
45 lines
1.6 KiB
EmacsLisp
;;; init.el --- Where all the magic begins
|
|
;;
|
|
;; This file loads Org and then loads the rest of our Emacs initialization from Emacs lisp
|
|
;; embedded in literate Org files.
|
|
|
|
(defvar bootstrap-version)
|
|
(let ((bootstrap-file
|
|
(expand-file-name
|
|
"straight/repos/straight.el/bootstrap.el"
|
|
(or (bound-and-true-p straight-base-dir)
|
|
user-emacs-directory)))
|
|
(bootstrap-version 7))
|
|
(unless (file-exists-p bootstrap-file)
|
|
(with-current-buffer
|
|
(url-retrieve-synchronously
|
|
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
|
|
'silent 'inhibit-cookies)
|
|
(goto-char (point-max))
|
|
(eval-print-last-sexp)))
|
|
(load bootstrap-file nil 'nomessage))
|
|
|
|
(straight-use-package 'org)
|
|
|
|
;; Load up Org Mode and (now included) Org Babel for elisp embedded in Org Mode files
|
|
(setq dotfiles-dir (file-name-directory (or (buffer-file-name) load-file-name)))
|
|
|
|
(let* ((org-dir (expand-file-name
|
|
"lisp" (expand-file-name
|
|
"org" (expand-file-name
|
|
"src" dotfiles-dir))))
|
|
(org-contrib-dir (expand-file-name
|
|
"lisp" (expand-file-name
|
|
"contrib" (expand-file-name
|
|
".." org-dir))))
|
|
(load-path (append (list org-dir org-contrib-dir)
|
|
(or load-path nil))))
|
|
;; load up Org and Org-babel
|
|
(require 'org)
|
|
(require 'ob-tangle))
|
|
|
|
;; load up all literate org-mode files in this directory
|
|
(mapc #'org-babel-load-file (directory-files dotfiles-dir t "\\.org$"))
|
|
|
|
;;; init.el ends here
|