Files
dot-emacs/lisp/init-typst.el

17 lines
326 B
EmacsLisp
Raw Normal View History

2025-11-19 09:22:40 +01:00
;; https://codeberg.org/meow_king/typst-ts-mode
(use-package typst-ts-mode
:mode "\\.typ\\'"
;; after installation, execute manually:
;; typst-ts-mc-install-grammar
:config
(setq tab-width 4
typst-indent-level 4
typst-indent-string-contents t))
(provide 'init-typst)
;;; init-typst.el ends here