From 6c2fb86c6a03e20abea5ddd17d735885f0b7cb5e Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Wed, 24 Nov 2021 23:01:07 -0500 Subject: feat: expose configs --- lua/lspconfig/server_configurations/puppet.lua | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 lua/lspconfig/server_configurations/puppet.lua (limited to 'lua/lspconfig/server_configurations/puppet.lua') diff --git a/lua/lspconfig/server_configurations/puppet.lua b/lua/lspconfig/server_configurations/puppet.lua new file mode 100644 index 00000000..50c510fd --- /dev/null +++ b/lua/lspconfig/server_configurations/puppet.lua @@ -0,0 +1,39 @@ +local util = require 'lspconfig/util' + +local root_files = { + 'manifests', + '.puppet-lint.rc', + 'hiera.yaml', + '.git', +} + +return { + default_config = { + cmd = { 'puppet-languageserver', '--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")]], + }, + }, +} -- cgit v1.2.3-70-g09d2