;;; init.el --- Load org config -*- lexical-binding: t -*- ;;; Commentary: ;;; Load literate config from config.org ;;; Code: (require 'org) (org-babel-load-file (expand-file-name "config.org" user-emacs-directory)) (provide 'init) ;;; init.el ends here