aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/home_assistant.lua
blob: 80a9354562d2e8c8f4f254c30ba0a0cdb998d335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---@brief
---
--- 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.

---@type vim.lsp.Config
return {
  cmd = { 'vscode-home-assistant', '--stdio' },
  filetypes = { 'yaml' },
  root_markers = {
    'configuration.yaml',
    'configuration.yml',
  },
}