diff options
| -rw-r--r-- | doc/configs.md | 31 | ||||
| -rw-r--r-- | doc/configs.txt | 23 |
2 files changed, 54 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 6467276c..b28dc786 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -145,6 +145,7 @@ Nvim by running `:help lspconfig-all`. - [hie](#hie) - [hlasm](#hlasm) - [hls](#hls) +- [home_assistant](#home_assistant) - [hoon_ls](#hoon_ls) - [html](#html) - [htmx](#htmx) @@ -5695,6 +5696,36 @@ Default config: --- +## home_assistant + +https://github.com/keesschollaart81/vscode-home-assistant + +`vscode-home-assistant` can be installed via from source or by downloading +and extracting the VSCode "Home Assistant Config Helper" extension + +`vscode-home-assistant` is a language server for Home Assistant ported from the VSCode "Home Assistant Config Helper" extension. + +Snippet to enable the language server: +```lua +vim.lsp.enable('home_assistant') +``` + +Default config: +- `cmd` : + ```lua + { "vscode-home-assistant", "--stdio" } + ``` +- `filetypes` : + ```lua + { "yaml" } + ``` +- `root_markers` : + ```lua + { "configuration.yaml", "configuration.yml" } + ``` + +--- + ## hoon_ls https://github.com/urbit/hoon-language-server diff --git a/doc/configs.txt b/doc/configs.txt index f6193aa8..4113c433 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -4096,6 +4096,29 @@ Default config: < ------------------------------------------------------------------------------ +home_assistant + +https://github.com/keesschollaart81/vscode-home-assistant + +`vscode-home-assistant` can be installed via from source or by downloading +and extracting the VSCode "Home Assistant Config Helper" extension + +`vscode-home-assistant` is a language server for Home Assistant ported from the VSCode "Home Assistant Config Helper" extension. + +Snippet to enable the language server: >lua + vim.lsp.enable('home_assistant') + + +Default config: +- cmd: >lua + { "vscode-home-assistant", "--stdio" } +- filetypes: >lua + { "yaml" } +- root_markers: >lua + { "configuration.yaml", "configuration.yml" } +< + +------------------------------------------------------------------------------ hoon_ls https://github.com/urbit/hoon-language-server |
