diff --git a/README.md b/README.md index cb1a40a..87c1c48 100644 --- a/README.md +++ b/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? diff --git a/init.el b/init.el index 872940b..1ccb98f 100644 --- a/init.el +++ b/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)