aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/puppet.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/puppet.lua')
-rw-r--r--lua/lspconfig/puppet.lua43
1 files changed, 0 insertions, 43 deletions
diff --git a/lua/lspconfig/puppet.lua b/lua/lspconfig/puppet.lua
deleted file mode 100644
index 3882823d..00000000
--- a/lua/lspconfig/puppet.lua
+++ /dev/null
@@ -1,43 +0,0 @@
-local configs = require 'lspconfig/configs'
-local util = require 'lspconfig/util'
-
-local server_name = 'puppet'
-local bin_name = 'puppet-languageserver'
-
-local root_files = {
- 'manifests',
- '.puppet-lint.rc',
- 'hiera.yaml',
- '.git',
-}
-
-configs[server_name] = {
- default_config = {
- cmd = { bin_name, '--stdio' },
- filetypes = { 'puppet' },
- root_dir = util.root_pattern(unpack(root_files)),
- single_file_support = true,
- },
- docs = {
- package_json = 'https://raw.githubusercontent.com/puppetlabs/puppet-vscode/main/package.json',
- description = [[
-LSP server for Puppet.
-
-Installation:
-
-- Clone the editor-services repository:
- https://github.com/puppetlabs/puppet-editor-services
-
-- Navigate into that directory and run: `bundle install`
-
-- Install the 'puppet-lint' gem: `gem install puppet-lint`
-
-- Add that repository to $PATH.
-
-- Ensure you can run `puppet-languageserver` from outside the editor-services directory.
-]],
- default_config = {
- root_dir = [[root_pattern("manifests", ".puppet-lint.rc", "hiera.yaml", ".git")]],
- },
- },
-}