spring cleaning config.org

This commit is contained in:
2025-04-11 21:17:13 -06:00
parent 512f551cf8
commit 4d514e0391

View File

@@ -497,56 +497,6 @@ Capture template for new hugo posts.
))
#+end_src
* LIGATURES
Set custom ligature symbols for different modes, which prettifies the Emacs
experience.
Customizing ligatures, which replace strings with pretty symbols. They configure by mode.
#+begin_src emacs-lisp :tangle ./config.el
;;;(after! org
;;;;; ⧗       ―        ﮸     λ ◁ ▷ ✧ ✦
;;;(appendq! +ligatures-extra-symbols
;;;`(:clock "⧗ "
;;;:circle ""
;;;:code ""
;;;:results "﮸"
;;;:shogi "⛊"
;;;:white_shogi "☖"
;;;:black_shogi "☗"
;;;:two_lines "⚏"
;;;;; :tags "  "
;;;:empty ""
;;;))
;;;(set-ligatures! 'org-mode
;;;;; :merge t
;;;;; :clock ":LOGBOOK:"
;;;:quote "#+begin_quote"
;;;:name "#+CAPTION:"
;;;:quote_end "#+end_quote"
;;;:code "#+begin_src"
;;;:code "#+BEGIN_SRC"
;;;:src_block "#+BEGIN:"
;;;:code "#+end_src"
;;;:code "#+END_SRC"
;;;:results "#+RESULTS:"
;;;:results "#+results:"
;;;;; :src_block_end ":END:"
;;;;; :src_block_end "#+END"
;;;;; :two_lines ":PROPERTIES:"
;;;;; :black_shogi "#+CATEGORY:"
;;;;; :black_shogi "#+category:"
;;;;; :two_lines "#+startup:"
;;;;; :two_lines "#+STARTUP:"
;;;:empty "#+title: "
;;;:empty "#+TITLE: "
;;;;; :shogi "#+NAME:"
;;;;; :shogi "#+name:"
;;;;; :tags "keywords:"
;;;;; :black_shogi "#+roam_tags:"
;;;))
#+end_src
* LINE SETTINGS
I set comment-line to 'SPC TAB TAB' which is a rather comfortable keybinding for
me. The standard Emacs keybinding for comment-line is 'C-x C-;'. The other
@@ -785,12 +735,12 @@ This change makes it so org-alert uses libnotify for system notifications as
well as update intervals.
#+begin_src emacs-lisp :tangle ./config.el
;; (use-package org-alert
;; :ensure t)
;; (setq alert-default-style 'libnotify
;; org-alert-interval 3600)
;; ;; Auto start org-alert when emacs/daemon load
;; (org-alert-enable)
(use-package org-alert
:ensure t)
(setq alert-default-style 'libnotify
org-alert-interval 3600)
;; Auto start org-alert when emacs/daemon load
(org-alert-enable)
#+end_src
** Org-Auto-Tangle