Fix org-mode shift-arrow keys and add cmake support.

This commit is contained in:
Tom Alexander
2025-02-24 12:17:32 -05:00
parent 515e910487
commit d9150880d3
5 changed files with 52 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
(require 'common-lsp)
(use-package cmake-mode
:commands cmake-mode
:hook (
(cmake-mode . (lambda ()
(eglot-ensure)
(defclass my/eglot-cmake (eglot-lsp-server) ()
:documentation
"Own eglot server class.")
(add-to-list 'eglot-server-programs
'(cmake-mode . (my/eglot-cmake "cmake-language-server")))
))
)
)
(provide 'lang-cmake)