We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4825fb7 commit d214a63Copy full SHA for d214a63
1 file changed
README.md
@@ -59,6 +59,19 @@ Recommended `eglot` configuration:
59
"--malloc-trim")))
60
```
61
62
+Recommended `tree-sitter` configuration:
63
+```emacs lisp
64
+ (when (treesit-available-p)
65
+ (use-package treesit
66
+ :ensure t
67
+ :init (setq treesit-extra-load-path
68
+ (gptel-cpp-complete--get-treesit-extra-load-path)
69
+ major-mode-remap-alist
70
+ '((c-mode . c-ts-mode)
71
+ (c++-mode . c++-ts-mode))
72
+ treesit-font-lock-level 4)))
73
+```
74
+
75
---
76
77
## Installation
0 commit comments