diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/README.md b/README.md index 866b4d3..dfcc845 100644 --- a/README.md +++ b/README.md | |||
@@ -601,7 +601,7 @@ I add it to the `find-file-hook` *and* `before-save-hook` because I don't want t | |||
601 | :config | 601 | :config |
602 | (show-smartparens-global-mode +1) | 602 | (show-smartparens-global-mode +1) |
603 | :hook | 603 | :hook |
604 | (prog-mode-hook . smart-parens-strict-mode)) | 604 | (prog-mode-hook . smartparens-strict-mode)) |
605 | 605 | ||
606 | 606 | ||
607 | ## Line numbers | 607 | ## Line numbers |
@@ -620,8 +620,6 @@ I add it to the `find-file-hook` *and* `before-save-hook` because I don't want t | |||
620 | (add-hook 'prog-mode-hook #'acdw/enable-line-numbers) | 620 | (add-hook 'prog-mode-hook #'acdw/enable-line-numbers) |
621 | 621 | ||
622 | 622 | ||
623 | <a id="org92fae61"></a> | ||
624 | |||
625 | # Writing | 623 | # Writing |
626 | 624 | ||
627 | 625 | ||
@@ -659,7 +657,7 @@ I add it to the `find-file-hook` *and* `before-save-hook` because I don't want t | |||
659 | 657 | ||
660 | ## Org mode | 658 | ## Org mode |
661 | 659 | ||
662 | I’ve put org mode under Applications, as opposed to [8](#org92fae61), because it’s more generally-applicable than that. | 660 | I’ve put org mode under Applications, as opposed to Writing, because it’s more generally-applicable than that. |
663 | 661 | ||
664 | (use-package org | 662 | (use-package org |
665 | :custom | 663 | :custom |
@@ -668,6 +666,7 @@ I’ve put org mode under Applications, as opposed to [8](#org92fae61), because | |||
668 | (org-fontify-whole-heading-line t) | 666 | (org-fontify-whole-heading-line t) |
669 | (org-fontify-quote-and-verse-blocks t) | 667 | (org-fontify-quote-and-verse-blocks t) |
670 | (org-pretty-entities t) | 668 | (org-pretty-entities t) |
669 | (org-num-mode +1) | ||
671 | 670 | ||
672 | (org-src-tab-acts-natively t) | 671 | (org-src-tab-acts-natively t) |
673 | (org-src-fontify-natively t) | 672 | (org-src-fontify-natively t) |
@@ -820,6 +819,14 @@ I’ve put org mode under Applications, as opposed to [8](#org92fae61), because | |||
820 | (byte-compile-file f (not disable-load)))))))))) | 819 | (byte-compile-file f (not disable-load)))))))))) |
821 | 820 | ||
822 | 821 | ||
822 | ### Add a hook to tangle when quitting | ||
823 | |||
824 | (defun acdw/refresh-emacs-no-load () | ||
825 | (refresh-emacs t)) | ||
826 | |||
827 | (add-hook 'kill-emacs-hook #'acdw/refresh-emacs-no-load) | ||
828 | |||
829 | |||
823 | ## License | 830 | ## License |
824 | 831 | ||
825 | Copyright © 2020 Case Duckworth <acdw@acdw.net> | 832 | Copyright © 2020 Case Duckworth <acdw@acdw.net> |
@@ -852,8 +859,3 @@ GPL, for what should be fairly obvious reasons. To that, I say: | |||
852 | 859 | ||
853 | **SUE ME, RMS!** | 860 | **SUE ME, RMS!** |
854 | 861 | ||
855 | |||
856 | ## Keymaps for *this* file | ||
857 | |||
858 | This isn’t working … yet. | ||
859 | |||