diff options
author | pommicket <pommicket@gmail.com> | 2022-12-24 13:59:43 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-24 13:59:43 -0500 |
commit | 1793fa40528295306d1d790074fdd8f382e8bef3 (patch) | |
tree | 2acc72e0ff15c0c66e478ea88bce4039f89d0b0a /ted.cfg | |
parent | a68d59e180b8131197c6387a764a78403b06e069 (diff) |
testing LSPs for other languages
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -70,9 +70,27 @@ root-identifiers = .ted-root.out, Cargo.toml, make.bat, CMakeLists.txt, Makefile # bg-texture = "/path/to/my/cool/picture.jpg" (or .png, .gif, .bmp) # bg-shader = "void main() { gl_FragColor = texture2D(t_texture, t_pos) * vec4(1.0,1.0,1.0,0.2); }" +[C.core] +lsp = "clangd --log=error" + +[C++.core] +lsp = "clangd --log=error" + +[Go.core] +lsp = "gopls" + +[Java.core] +lsp = "jdtls" + +[Python.core] +lsp = "pylsp" + [Rust.core] lsp = "rust-analyzer" +[Tex.core] +lsp = "texlab" + [keyboard] # motion and selection Left = :left @@ -149,7 +167,11 @@ Ctrl+Shift+r = :reload-all # 5 TeX # 6 Markdown # 7 HTML -# 8 Config (e.g. ted.cfg) +# 8 Config +# 9 JavaScript +# 10 Java +# 11 Go +# 12 ted.cfg # -1 Guess from the file extension (default) Ctrl+Space = :autocomplete |