add C# mode to emacs
This commit is contained in:
parent
6405e99586
commit
4ecb541679
1 changed files with 6 additions and 0 deletions
|
@ -927,6 +927,12 @@ this should be useful later
|
||||||
(add-hook 'c-mode-hook 'eglot-ensure)
|
(add-hook 'c-mode-hook 'eglot-ensure)
|
||||||
(add-hook 'c++-mode-hook 'eglot-ensure)
|
(add-hook 'c++-mode-hook 'eglot-ensure)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** C#
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package csharp-mode
|
||||||
|
:mode "\\.cs\\'"
|
||||||
|
:hook (csharp-mode . eglot-ensure))
|
||||||
|
#+end_src
|
||||||
** CMake
|
** CMake
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package cmake-mode
|
(use-package cmake-mode
|
||||||
|
|
Loading…
Reference in a new issue