summaryrefslogtreecommitdiff
path: root/dot_config/nvim_new/lsp/puppet.lua
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2025-08-04 07:45:42 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit23d53b5d7bc2f31eed672c0a8d26dc608fb6d0ba (patch)
tree7b23cd20340dd0984bb1a9616744ef81c69d3b4c /dot_config/nvim_new/lsp/puppet.lua
parent1227ae992f4494d6a3d82d70d0bb9cb01dd50847 (diff)
feat(nvim) slim down new config
Diffstat (limited to 'dot_config/nvim_new/lsp/puppet.lua')
-rw-r--r--dot_config/nvim_new/lsp/puppet.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/dot_config/nvim_new/lsp/puppet.lua b/dot_config/nvim_new/lsp/puppet.lua
new file mode 100644
index 0000000..297e493
--- /dev/null
+++ b/dot_config/nvim_new/lsp/puppet.lua
@@ -0,0 +1,26 @@
+---@brief
+---
+--- 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.
+return {
+ cmd = { 'puppet-languageserver', '--stdio' },
+ filetypes = { 'puppet' },
+ root_markers = {
+ 'manifests',
+ '.puppet-lint.rc',
+ 'hiera.yaml',
+ '.git',
+ },
+}