Update README.md and add the comment-multi-line variable
This commit is contained in:
18
README.md
18
README.md
@@ -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?
|
||||
|
||||
5
init.el
5
init.el
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user