summaryrefslogtreecommitdiff
path: root/dot_config/nvim_new/lsp/pug.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/nvim_new/lsp/pug.lua')
-rw-r--r--dot_config/nvim_new/lsp/pug.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/dot_config/nvim_new/lsp/pug.lua b/dot_config/nvim_new/lsp/pug.lua
new file mode 100644
index 0000000..8b8910d
--- /dev/null
+++ b/dot_config/nvim_new/lsp/pug.lua
@@ -0,0 +1,12 @@
+---@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)
+return {
+ cmd = { 'pug-lsp' },
+ filetypes = { 'pug' },
+ root_markers = { 'package.json' },
+}