Um-lambdafy a variable

This commit is contained in:
Case Duckworth 2021-08-15 21:10:48 -05:00
parent 7dcb7e8ce0
commit c9bcd38f9c
1 changed files with 38 additions and 31 deletions

69
init.el
View File

@ -352,7 +352,7 @@
erc-kill-server-buffer-on-quit t
erc-nick "acdw"
erc-nick-truncate (- erc-fill-static-center 1)
erc-prompt (lambda () (acdw-erc/prompt))
erc-prompt #'acdw-erc/prompt
erc-prompt-for-password nil ; use ~/.authinfo
erc-rename-buffers t
erc-server erc-default-server
@ -1297,35 +1297,39 @@ if ripgrep is installed, otherwise `consult-grep'."
(setup (:straight org)
(:straight org-contrib)
(require 'acdw-org) ; so I don't clutter up init.el
(:option org-adapt-indentation nil
org-catch-invisible-edits 'smart
org-clock-clocked-in-display 'mode-line
org-clock-string-limit 7 ; gives time and not title
org-confirm-babel-evaluate nil
org-ellipsis ""
org-export-coding-system 'utf-8-unix
org-export-headline-levels 8
org-export-with-section-numbers nil
org-export-with-smart-quotes t
org-export-with-sub-superscripts t
org-export-with-toc nil
org-fontify-done-headline t
org-fontify-quote-and-verse-blocks t
org-fontify-whole-heading-line t
org-hide-emphasis-markers t
org-html-coding-system 'utf-8-unix
org-imenu-depth 3
org-outline-path-complete-in-steps nil
org-pretty-entities t
org-refile-use-outline-path 'file
org-special-ctrl-a/e t
org-special-ctrl-k t
org-src-fontify-natively t
org-src-tab-acts-natively t
org-src-window-setup 'current-window
org-startup-truncated nil
org-tags-column 0 ; (- 0 fill-column -3)
org-directory "~/org")
(:option
org-adapt-indentation nil
org-catch-invisible-edits 'smart
org-clock-clocked-in-display 'mode-line
org-clock-string-limit 7 ; gives time and not title
org-confirm-babel-evaluate nil
org-directory "~/org"
org-ellipsis ""
org-export-coding-system 'utf-8-unix
org-export-headline-levels 8
org-export-with-section-numbers nil
org-export-with-smart-quotes t
org-export-with-sub-superscripts t
org-export-with-toc nil
org-fontify-done-headline t
org-fontify-quote-and-verse-blocks t
org-fontify-whole-heading-line t
org-hide-emphasis-markers t
org-html-coding-system 'utf-8-unix
org-image-actual-width '(300)
org-imenu-depth 3
org-outline-path-complete-in-steps nil
org-pretty-entities t
org-refile-use-outline-path 'file
org-special-ctrl-a/e t
org-special-ctrl-k t
org-src-fontify-natively t
org-src-tab-acts-natively t
org-src-window-setup 'current-window
org-startup-truncated nil
org-startup-with-inline-images t
org-tags-column 0 ; (- 0 fill-column -3)
)
(:bind "RET" acdw-org/return-dwim
"<S-return>" acdw-org/org-table-copy-down
@ -1344,7 +1348,10 @@ if ripgrep is installed, otherwise `consult-grep'."
acdw/org-fix-lines-before-save)
(advice-add 'org-delete-backward-char
:override #'acdw-org/delete-backward-char))
:override #'acdw-org/delete-backward-char)
(setup (:straight org-appear)
(:hook-into org-mode)))
(setup (:straight paredit)