10 lines
221 B
EmacsLisp
10 lines
221 B
EmacsLisp
;;; init.el -- My emacs config -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
(when (require 'org nil :noerror)
|
|
(org-babel-load-file (locate-user-emacs-file "README.org")))
|
|
|
|
(provide 'init)
|
|
;;; init.el ends here
|