diff options
| author | tslil <tslil@posteo.de> | 2026-07-10 14:45:19 +0100 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-07-10 14:46:24 +0100 |
| commit | fd27df4a5f82a280ad6cd9f3e6eec783248a74e6 (patch) | |
| tree | e9d5423848b29a97b490f9e71f510e7297aec9e3 /emacs/inits/20-programming.el | |
| parent | 9d4fc3bc18083d45ac7032388c35c65f51b42f11 (diff) | |
[emacs] fix treesit-fold demand, include line spacing changes
Diffstat (limited to 'emacs/inits/20-programming.el')
| -rw-r--r-- | emacs/inits/20-programming.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el index 47619c7..5ec8cae 100644 --- a/emacs/inits/20-programming.el +++ b/emacs/inits/20-programming.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2026-05-15 09h11 BST (anker)> +;; Time-stamp: <2026-07-10 14h44 BST (anker)> ;; ----------------------------------------------------------------------------- ;; General setup @@ -43,7 +43,8 @@ :ensure) (use-package treesit-fold - :ensure + :ensure t + :demand t :bind (:map treesit-fold-mode-map ("C-^" . treesit-fold-toggle)) :config @@ -61,6 +62,7 @@ (defun programming-setup () (interactive) + (setq line-spacing 6) (spell-fu-mode -1) (subword-mode 1) (electric-pair-local-mode) |
