diff options
| author | William Boman <william@redwill.se> | 2022-01-29 18:03:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-29 18:03:44 +0100 |
| commit | c2bde3911892a51323219f7cfc9bb50b49afd29f (patch) | |
| tree | 3ff017cde60b4ada34351171b7e3c745acc340aa /lua/nvim-lsp-installer/_generated | |
| parent | actions: simplify run-autogen workflow (diff) | |
| download | mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.tar mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.tar.gz mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.tar.bz2 mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.tar.lz mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.tar.xz mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.tar.zst mason-c2bde3911892a51323219f7cfc9bb50b49afd29f.zip | |
add nickel_ls (#452)
Diffstat (limited to 'lua/nvim-lsp-installer/_generated')
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/filetype_map.lua | 2 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/metadata.lua | 3 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/schemas/nickel_ls.lua | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer/_generated/filetype_map.lua b/lua/nvim-lsp-installer/_generated/filetype_map.lua index eb8ad20d..b1b7ad22 100644 --- a/lua/nvim-lsp-installer/_generated/filetype_map.lua +++ b/lua/nvim-lsp-installer/_generated/filetype_map.lua @@ -74,6 +74,8 @@ return { mdx = { "tailwindcss" }, mustache = { "tailwindcss" }, mysql = { "sqlls", "sqls" }, + ncl = { "nickel_ls" }, + nickel = { "nickel_ls" }, nim = { "nimls" }, nix = { "rnix" }, njk = { "tailwindcss" }, diff --git a/lua/nvim-lsp-installer/_generated/metadata.lua b/lua/nvim-lsp-installer/_generated/metadata.lua index 4c12d7dd..89734d6a 100644 --- a/lua/nvim-lsp-installer/_generated/metadata.lua +++ b/lua/nvim-lsp-installer/_generated/metadata.lua @@ -157,6 +157,9 @@ return { ltex = { filetypes = { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex" } }, + nickel_ls = { + filetypes = { "ncl", "nickel" } + }, nimls = { filetypes = { "nim" } }, diff --git a/lua/nvim-lsp-installer/_generated/schemas/nickel_ls.lua b/lua/nvim-lsp-installer/_generated/schemas/nickel_ls.lua new file mode 100644 index 00000000..c18af1a6 --- /dev/null +++ b/lua/nvim-lsp-installer/_generated/schemas/nickel_ls.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["nls.server.debugLog"] = {default = false,description = "Logs the communication between VS Code and the language server.",scope = "window",type = "boolean"},["nls.server.path"] = {default = "nls",description = "Path to nickel language server",scope = "window",type = "string"},["nls.server.trace"] = {description = "Enables performance tracing to the given file",scope = "window",type = "string"}},title = "Nickel Language Server Configuration",type = "object"}
\ No newline at end of file |
