From fdd1d410f8b2a68710061ccd90f566bdcdb94505 Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Tue, 10 Mar 2020 20:35:42 +0100 Subject: [PATCH] Use with-eval-after-load --- init.org | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/init.org b/init.org index a1e3b09..02daab3 100644 --- a/init.org +++ b/init.org @@ -672,11 +672,10 @@ ="this string"=, because the quotation marks causes problems. #+BEGIN_SRC emacs-lisp - ;;(require 'org) - (eval-after-load "org" - '(progn - (setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,") - (custom-set-variables `(org-emphasis-alist ',org-emphasis-alist)))) + (with-eval-after-load 'org + (setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,") + (custom-set-variables `(org-emphasis-alist ',org-emphasis-alist))) + #+END_SRC Enable org-bullets when opening org-files.