* can substitue hs-minor mode * integrates with lsp via lsp-origami package Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
17 lines
371 B
EmacsLisp
17 lines
371 B
EmacsLisp
;;; 202-origami.el --- a text folding minor mode
|
|
|
|
;;; Commentary:
|
|
;; With origami minor mode enabled, you can collapse and expand regions of text.
|
|
|
|
;;; Code:
|
|
(use-package origami
|
|
:ensure t
|
|
:init
|
|
;; enables syntax checking for every supported language
|
|
(global-flycheck-mode)
|
|
:config
|
|
(use-package lsp-origami))
|
|
|
|
(provide '109-origami)
|
|
;;; 202-origami.el ends here
|