aboutsummaryrefslogtreecommitdiff
path: root/book
diff options
context:
space:
mode:
authorwojciechkepka2021-06-18 03:57:36 +0000
committerBlaž Hrastnik2021-06-18 08:42:38 +0000
commitbbefc1db63f7c3933adfd91fc404db9850af8399 (patch)
treedd993aab36ba1abb5d639512004ecd845cc4e115 /book
parentd095ec15d4672ec5fb3b1f4a85282db31f40c6ea (diff)
Add an option to disable display of progress in status bar
Diffstat (limited to 'book')
-rw-r--r--book/src/configuration.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md
index 649aa21f..31c267cf 100644
--- a/book/src/configuration.md
+++ b/book/src/configuration.md
@@ -1,5 +1,12 @@
# Configuration
+## LSP
+
+To disable language server progress report from being displayed in the status bar add this option to your `config.toml`:
+```toml
+lsp_progress = false
+```
+
## Theme
Use a custom theme by placing a theme.toml in your config directory (i.e ~/.config/helix/theme.toml). The default theme.toml can be found [here](https://github.com/helix-editor/helix/blob/master/theme.toml), and user submitted themes [here](https://github.com/helix-editor/helix/blob/master/contrib/themes).
@@ -87,3 +94,4 @@ Possible keys:
These keys match [tree-sitter scopes](https://tree-sitter.github.io/tree-sitter/syntax-highlighting#theme). We half-follow the common scopes from [macromates language grammars](https://macromates.com/manual/en/language_grammars) with some differences.
For a given highlight produced, styling will be determined based on the longest matching theme key. So it's enough to provide function to highlight `function.macro` and `function.builtin` as well, but you can use more specific scopes to highlight specific cases differently.
+