feat(emacs): grammatical framework

This commit is contained in:
2026-01-20 10:36:15 -07:00
parent 3c6eb236b1
commit ee274259e8

View File

@@ -0,0 +1,16 @@
;;; -*- lexical-binding: t -*-
(require 'syd/base)
(use-package gf)
(with-eval-after-load 'lsp-mode
(add-to-list 'lsp-language-id-configuration
'(gf-mode . "grammatical-framework"))
(lsp-register-client
(make-lsp-client
:new-connection (lsp-stdio-connection "gf-lsp")
:activation-fn (lsp-activate-on "grammatical-framework")
:server-id 'gf-lsp)))
(provide 'syd/grammatical-framework)