diff options
| author | PREVOST Corentin <corentin.prevost@wildcodeschool.fr> | 2023-01-21 01:07:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-21 08:07:04 +0800 |
| commit | 10c25dbf6546f15009c11bdda9281e76f575333a (patch) | |
| tree | e9dd6bd0a1cb44e25a4048ab6972834c7da741f0 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.tar nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.tar.gz nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.tar.bz2 nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.tar.lz nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.tar.xz nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.tar.zst nvim-lspconfig-10c25dbf6546f15009c11bdda9281e76f575333a.zip | |
feat: add nomad language support (#2413)
* feat: add nomad language support
* fix: format
Co-authored-by: Corentin Prevost <prevost.corentin@yahoo.com>
Co-authored-by: Raphael <glephunter@gmail.com>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/nomad_lsp.lua | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/nomad_lsp.lua b/lua/lspconfig/server_configurations/nomad_lsp.lua new file mode 100644 index 00000000..5ffa98a0 --- /dev/null +++ b/lua/lspconfig/server_configurations/nomad_lsp.lua @@ -0,0 +1,36 @@ +local util = require 'lspconfig.util' +local bin_name = 'nomad-lsp' + +if vim.fn.has 'win32' == 1 then + bin_name = bin_name .. '.exe' +end + +return { + default_config = { + cmd = { bin_name }, + filetypes = { 'hcl.nomad', 'nomad' }, + root_dir = util.root_pattern '*.nomad', + }, + docs = { + description = [[ +https://github.com/juliosueiras/nomad-lsp + +Written in Go, compilation is needed for `nomad_lsp` to be used. Please see the [original repository](https://github.com/juliosuieras/nomad-lsp). + +Add the executable to your system or vim PATH and it will be set to go. + +No configuration option is needed unless you choose not to add `nomad-lsp` executable to the PATH. You should know what you are doing if you choose so. + +```lua +require('lspconfig').nomad_lsp.setup{ } +``` + +However, a `hcl.nomad` or `nomad` filetype should be defined. + +Description of your jobs should be written in `.nomad` files for the LSP client to configure the server's `root_dir` configuration option. +]], + default_config = { + root_dir = [[util.root_pattern("hcl.nomad", "nomad")]], + }, + }, +} |
