Add forth mode to emacs

This commit is contained in:
Charlotte Van Petegem 2021-12-01 15:48:28 +01:00
parent a3cf2733c3
commit e3a616fefa
No known key found for this signature in database
GPG key ID: 019E764B7184435A
3 changed files with 12 additions and 2 deletions

View file

@ -40,6 +40,14 @@
"SPC" '(:keymap lsp-command-map)
)
)
;; Forth syntax support
(use-package gforth
;; Included in the gforth package, see emacs/default.nix
:ensure nil
:mode ("\\.fs\\'" . forth-mode)
:mode ("\\.fb\\'" . forth-block-mode)
)
;; Markdown syntax support
(use-package markdown-mode