aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/pug.lua
blob: d04f48fdd59859a3be6ccd8187ff3b6710899ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://github.com/opa-oz/pug-lsp
---
--- An implementation of the Language Protocol Server for [Pug.js](http://pugjs.org)
---
--- PugLSP can be installed via `go install github.com/opa-oz/pug-lsp@latest`, or manually downloaded from [releases page](https://github.com/opa-oz/pug-lsp/releases)

---@type vim.lsp.Config
return {
  cmd = { 'pug-lsp' },
  filetypes = { 'pug' },
  root_markers = { 'package.json' },
}