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

17 lines
326 B
EmacsLisp

;; 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