Update README.md and add the comment-multi-line variable

This commit is contained in:
James Cherti
2024-08-18 12:54:57 -04:00
parent 458741e435
commit dbde4688bf
2 changed files with 23 additions and 0 deletions

View File

@@ -552,6 +552,24 @@ To configure `corfu` and `cape`, add the following to `~/.emacs.d/post-init.el`:
(load bootstrap-file nil 'nomessage))
```
### Which other packages can be interesting to add?
Add the following to `~/.emacs.d/post-init.el`:
``` emacs-lisp
(use-package which-key
:ensure t
:config
(which-key-mode))
;; Add context menu
(when (display-graphic-p)
(context-menu-mode))
(pixel-scroll-precision-mode)
(display-time-mode)
```
## Frequently asked questions
### How to increase gc-cons-threshold?

View File

@@ -288,6 +288,11 @@
(setq-default tab-always-indent t)
;; Enable multi-line commenting which ensures that `comment-indent-new-line'
;; properly continues comments onto new lines, which is useful for writing
;; longer comments or docstrings that span multiple lines.
(setq comment-multi-line t)
;; We often split terminals and editor windows or place them side-by-side,
;; making use of the additional horizontal space.
(setq-default fill-column 80)