diff options
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -211,6 +211,15 @@ comment-end = " */" [GDScript.core] lsp-port = 6005 +# this delay is needed because godot's language server is currently kinda shitty +# and slow so we want to avoid overwhelming it with requests +# (specifically this sets up a delay between you typing +# and ted sending what you typed to godot) +lsp-delay = 0.5 +# phantom completion/signature help use a lot of requests --- let's not overwhelm godot +# (turn these back on if you want but you may have to increase lsp-delay) +phantom-completions = off +signature-help = off # phantom completions are just annoying if you're not actually programming [Markdown.core] |