diff options
| author | Steve Vermeulen <sfvermeulen@gmail.com> | 2024-08-20 14:00:47 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-20 14:00:47 +0800 |
| commit | 4591bc56370e7ee1ca0af3a4b28129d8698adb3f (patch) | |
| tree | 2d792df254f5a9f8b7bd202f2c86fb5054659bb8 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.tar nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.tar.gz nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.tar.bz2 nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.tar.lz nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.tar.xz nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.tar.zst nvim-lspconfig-4591bc56370e7ee1ca0af3a4b28129d8698adb3f.zip | |
feat: add tea-leaves support (#3271)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/tea_leaves.lua | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/tea_leaves.lua b/lua/lspconfig/server_configurations/tea_leaves.lua new file mode 100644 index 00000000..8367b54c --- /dev/null +++ b/lua/lspconfig/server_configurations/tea_leaves.lua @@ -0,0 +1,31 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + cmd = { + 'tea-leaves', + }, + filetypes = { + 'teal', + }, + root_dir = util.root_pattern 'tlconfig.lua', + }, + docs = { + description = [[ +https://github.com/svermeulen/tea-leaves + +Install with: +``` +luarocks install tea-leaves +``` + +Optional Command Args: +* "--log-mode=by_date" - Enable logging in $HOME/.cache/tea-leaves. Log name will be date + pid of process +* "--log-mode=by_proj_path" - Enable logging in $HOME/.cache/tea-leaves. Log name will be project path + pid of process +* "--verbose=true" - Increases log level. Does nothing unless log-mode is set +]], + default_config = { + root_dir = [[root_pattern("tlconfig.lua")]], + }, + }, +} |
