Browse Source

Fix indents

main
parent
commit
860c7258bc
  1. 15
      README.org
  2. 15
      modules/core.el

15
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"))

15
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"))

Loading…
Cancel
Save