aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/hyprls.lua
blob: 64d7cdafeb1212f52a06f30c86e33fa6805e651b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---@brief
---
--- https://github.com/hyprland-community/hyprls
---
--- `hyprls` can be installed via `go`:
--- ```sh
--- go install github.com/hyprland-community/hyprls/cmd/hyprls@latest
--- ```

---@type vim.lsp.Config
return {
  cmd = { 'hyprls', '--stdio' },
  filetypes = { 'hyprlang' },
  root_markers = { '.git' },
}