From 860c7258bcdf86a0b7b3a4eb20d6da4b20146983 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 4 Feb 2021 20:32:19 -0500 Subject: [PATCH] Fix indents --- README.org | 15 +++++++-------- modules/core.el | 15 +++++++-------- 2 files changed, 14 insertions(+), 16 deletions(-) diff --git a/README.org b/README.org index ce44b6f..f6a770a 100644 --- a/README.org +++ b/README.org @@ -286,17 +286,16 @@ Emacs' default user interface is horrendous, but with less than 10 lines of code #+begin_src emacs-lisp (use-package org - :hook (org-mode . - (lambda () - (org-indent-mode) - (visual-line-mode 1) - (variable-pitch-mode 1))) + :hook (org-mode . (lambda () + (org-indent-mode) + (visual-line-mode 1) + (variable-pitch-mode 1))) :custom (org-ellipsis " ▾") - (org-log-done 'time) - (org-log-into-drawer t) + (org-log-done 'time) + (org-log-into-drawer t) (org-image-actual-width nil) (org-directory dotfiles/home) - (org-src-preserve-indentation t) + (org-src-preserve-indentation t) :config (require 'org-tempo) (add-to-list 'org-structure-template-alist '("s" . "src")) (add-to-list 'org-structure-template-alist '("q" . "quote")) diff --git a/modules/core.el b/modules/core.el index 1c6c53f..b847f6a 100644 --- a/modules/core.el +++ b/modules/core.el @@ -34,17 +34,16 @@ (tooltip-mode -1) (use-package org - :hook (org-mode . - (lambda () - (org-indent-mode) - (visual-line-mode 1) - (variable-pitch-mode 1))) + :hook (org-mode . (lambda () + (org-indent-mode) + (visual-line-mode 1) + (variable-pitch-mode 1))) :custom (org-ellipsis " ▾") - (org-log-done 'time) - (org-log-into-drawer t) + (org-log-done 'time) + (org-log-into-drawer t) (org-image-actual-width nil) (org-directory dotfiles/home) - (org-src-preserve-indentation t) + (org-src-preserve-indentation t) :config (require 'org-tempo) (add-to-list 'org-structure-template-alist '("s" . "src")) (add-to-list 'org-structure-template-alist '("q" . "quote"))