15 lines
323 B
Lua
15 lines
323 B
Lua
---@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' },
|
|
}
|