Update README.md

This commit is contained in:
James Cherti
2026-01-31 16:04:07 -05:00
parent 2a6fb7ae8d
commit 3827475b53

View File

@@ -969,11 +969,13 @@ To configure **easysession**, add the following to `~/.emacs.d/post-init.el`:
(easysession-save-interval (* 10 60)) ; Save every 10 minutes (easysession-save-interval (* 10 60)) ; Save every 10 minutes
:init :init
;; Key mappings: ;; Key mappings
;; C-c l for switching sessions (global-set-key (kbd "C-c ss") #'easysession-save)
;; and C-c s for saving the current session (global-set-key (kbd "C-c sl") #'easysession-switch-to)
(global-set-key (kbd "C-c l") 'easysession-switch-to) (global-set-key (kbd "C-c sL") #'easysession-switch-to-and-restore-geometry)
(global-set-key (kbd "C-c s") 'easysession-save-as) (global-set-key (kbd "C-c sr") #'easysession-rename)
(global-set-key (kbd "C-c sR") #'easysession-reset)
(global-set-key (kbd "C-c sd") #'easysession-delete)
;; The depth 102 and 103 have been added to to `add-hook' to ensure that the ;; The depth 102 and 103 have been added to to `add-hook' to ensure that the
;; session is loaded after all other packages. (Using 103/102 is particularly ;; session is loaded after all other packages. (Using 103/102 is particularly
@@ -1011,6 +1013,13 @@ To configure **org-mode**, add the following to `~/.emacs.d/post-init.el`:
(org-startup-truncated t)) (org-startup-truncated t))
``` ```
The `org-appear` package temporarily reveals normally hidden elements (such as emphasis markers, links, or entities) when the cursor enters them, and hides them again when the cursor leaves. To configure **org-appear**, add the following to `~/.emacs.d/post-init.el`:
```elisp
(use-package org-appear
:commands org-appear-mode
:hook (org-mode . org-appear-mode))
```
### Configuring markdown-mode (e.g., README.md syntax) ### Configuring markdown-mode (e.g., README.md syntax)
The [markdown-mode](https://github.com/jrblevin/markdown-mode) package provides a major mode for Emacs for syntax highlighting, editing commands, and preview support for Markdown documents. It supports core Markdown syntax as well as extensions like GitHub Flavored Markdown (GFM). The [markdown-mode](https://github.com/jrblevin/markdown-mode) package provides a major mode for Emacs for syntax highlighting, editing commands, and preview support for Markdown documents. It supports core Markdown syntax as well as extensions like GitHub Flavored Markdown (GFM).