blob: 5230d2308b88897b94e87b73852a3239f2ae4f1d (
plain)
1
2
3
4
5
6
7
|
;; init.el -*- lexical-binding: t -*-
(let ((conf (expand-file-name "config"
user-emacs-directory)))
(unless (load conf 'no-error)
(require 'org)
(org-babel-load-file (concat conf ".org"))))
|