diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-17 08:16:24 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-17 08:16:24 +0200 |
commit | 195d099351c6fec292b60ac341ef8a47be6c2577 (patch) | |
tree | 2c624029154482bde90cab1e75ef6ea82641220c /.config/emacs/config.org | |
parent | 07d7f72297a0c30b4f5632a7e00f93afc1ae0f5a (diff) |
emacs: ‘Set treesit-font-lock-level’ to 4
Diffstat (limited to '.config/emacs/config.org')
-rw-r--r-- | .config/emacs/config.org | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index fa76dfe..20568ed 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -663,6 +663,16 @@ already installed unfortunately, but it’s easy enough to do manually. #+END_SRC +I also prefer to have as many things syntax highlighted as possible when using +tree-sitter, with the ability to fully customize faces (or turn off faces I +don’t want highlighted). + +#+BEGIN_SRC elisp + + (setq treesit-font-lock-level 4) + +#+END_SRC + *** Language Server Protocol LSP is an absolute necessity when programming. Luckily ~lsp-mode~ has us |