diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/filetype_map.lua | 2 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/language_autocomplete_map.lua | 2 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/metadata.lua | 3 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/_generated/schemas/zeta_note.lua | 3 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/servers/init.lua | 1 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/servers/zeta_note/init.lua | 35 |
7 files changed, 2 insertions, 45 deletions
@@ -244,7 +244,6 @@ require("nvim-lsp-installer").setup({ | Lua | `sumneko_lua` | | Markdown | `prosemd_lsp` | | Markdown | `remark_ls` | -| Markdown | `zeta_note` | | Markdown | `zk` | | Metamath Zero | `mm0_ls` | | Nickel | `nickel_ls` | diff --git a/lua/nvim-lsp-installer/_generated/filetype_map.lua b/lua/nvim-lsp-installer/_generated/filetype_map.lua index d5135775..09eed639 100644 --- a/lua/nvim-lsp-installer/_generated/filetype_map.lua +++ b/lua/nvim-lsp-installer/_generated/filetype_map.lua @@ -78,7 +78,7 @@ return { liquid = { "tailwindcss", "theme_check" }, llw = { "lelwel_ls" }, lua = { "sumneko_lua" }, - markdown = { "grammarly", "ltex", "prosemd_lsp", "remark_ls", "tailwindcss", "zeta_note", "zk" }, + markdown = { "grammarly", "ltex", "prosemd_lsp", "remark_ls", "tailwindcss", "zk" }, mdx = { "tailwindcss" }, ["metamath-zero"] = { "mm0_ls" }, mustache = { "tailwindcss" }, diff --git a/lua/nvim-lsp-installer/_generated/language_autocomplete_map.lua b/lua/nvim-lsp-installer/_generated/language_autocomplete_map.lua index 41f35867..0390ad63 100644 --- a/lua/nvim-lsp-installer/_generated/language_autocomplete_map.lua +++ b/lua/nvim-lsp-installer/_generated/language_autocomplete_map.lua @@ -21,7 +21,7 @@ return { latex = { "ltex", "texlab" }, liquid = { "theme_check" }, lua = { "sumneko_lua" }, - markdown = { "prosemd_lsp", "remark_ls", "zeta_note", "zk" }, + markdown = { "prosemd_lsp", "remark_ls", "zk" }, ["metamath-zero"] = { "mm0_ls" }, nix = { "rnix" }, ["objective-c"] = { "ccls" }, diff --git a/lua/nvim-lsp-installer/_generated/metadata.lua b/lua/nvim-lsp-installer/_generated/metadata.lua index d95b7468..3805c269 100644 --- a/lua/nvim-lsp-installer/_generated/metadata.lua +++ b/lua/nvim-lsp-installer/_generated/metadata.lua @@ -343,9 +343,6 @@ return { yamlls = { filetypes = { "yaml", "yaml.docker-compose" } }, - zeta_note = { - filetypes = { "markdown" } - }, zk = { filetypes = { "markdown" } }, diff --git a/lua/nvim-lsp-installer/_generated/schemas/zeta_note.lua b/lua/nvim-lsp-installer/_generated/schemas/zeta_note.lua deleted file mode 100644 index e6b95e26..00000000 --- a/lua/nvim-lsp-installer/_generated/schemas/zeta_note.lua +++ /dev/null @@ -1,3 +0,0 @@ --- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. --- stylua: ignore start -return {properties = {["marksman.customCommand"] = {description = "When set use this command to run the language server.\nThe command is split on spaces: first part is the command name, the rest is the arguments.",scope = "window",type = "string"},["marksman.customCommandDir"] = {markdownDescription = "When set run the `#marksman.customCommand#` from this dir rather than workspace root.",scope = "window",type = "string"},["marksman.trace.server"] = {default = "verbose",description = "Level of verbosity in communicating with the server",enum = { "off", "messages", "verbose" },scope = "window",type = "string"}},title = "Marksman"}
\ No newline at end of file diff --git a/lua/nvim-lsp-installer/servers/init.lua b/lua/nvim-lsp-installer/servers/init.lua index 9758a8ea..1425a12b 100644 --- a/lua/nvim-lsp-installer/servers/init.lua +++ b/lua/nvim-lsp-installer/servers/init.lua @@ -146,7 +146,6 @@ local CORE_SERVERS = Data.set_of { "volar", "vuels", "yamlls", - "zeta_note", "zk", "zls", } diff --git a/lua/nvim-lsp-installer/servers/zeta_note/init.lua b/lua/nvim-lsp-installer/servers/zeta_note/init.lua deleted file mode 100644 index f0c01dc9..00000000 --- a/lua/nvim-lsp-installer/servers/zeta_note/init.lua +++ /dev/null @@ -1,35 +0,0 @@ -local server = require "nvim-lsp-installer.server" -local process = require "nvim-lsp-installer.process" -local platform = require "nvim-lsp-installer.platform" -local Data = require "nvim-lsp-installer.data" -local github = require "nvim-lsp-installer.core.managers.github" -local std = require "nvim-lsp-installer.core.managers.std" - -local coalesce, when = Data.coalesce, Data.when - -return function(name, root_dir) - return server.Server:new { - name = name, - root_dir = root_dir, - homepage = "https://github.com/artempyanykh/zeta-note", - languages = { "markdown" }, - installer = function() - local source = github.release_file { - repo = "artempyanykh/zeta-note", - asset_file = coalesce( - when(platform.is_mac, "zeta-note-macos"), - when(platform.is_linux and platform.arch == "x64", "zeta-note-linux"), - when(platform.is_win and platform.arch == "x64", "zeta-note-windows.exe") - ), - } - source.with_receipt() - std.download_file(source.download_url, platform.is_win and "zeta-note.exe" or "zeta-note") - std.chmod("+x", { "zeta-note" }) - end, - default_options = { - cmd_env = { - PATH = process.extend_path { root_dir }, - }, - }, - } -end |
