branch: externals/csharp-mode commit 0e26b8850b251a9c4495c7d2e0f8ee46688fe469 Author: Theodor Thornhill <t...@thornhill.no> Commit: Theodor Thornhill <t...@thornhill.no>
Update readme with :ensure t --- README.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index d3fdd23..d7c334d 100644 --- a/README.org +++ b/README.org @@ -22,10 +22,11 @@ This is a mode for editing C# in emacs. It's using [[https://github.com/ubolonto ** tree-sitter support You can enable experimental tree sitter support for indentation and highlighting using #+begin_src elisp - (use-package tree-sitter) - (use-package tree-sitter-langs) + (use-package tree-sitter :ensure t) + (use-package tree-sitter-langs :ensure t) (use-package csharp-mode + :ensure t :config (add-to-list 'auto-mode-alist '("\\.cs\\'" . csharp-tree-sitter-mode))) #+end_src