mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-19 05:20:57 +01:00
17 lines
326 B
EmacsLisp
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
|