From 59f0d67e6d8099b9af6f0ff8bcbdeb121a662792 Mon Sep 17 00:00:00 2001 From: Mykhailo Nikiforov Date: Tue, 10 Oct 2023 10:15:44 +0300 Subject: [PATCH] Disable marksman --- nvim/lua/plugins/lang/markdown.lua | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/nvim/lua/plugins/lang/markdown.lua b/nvim/lua/plugins/lang/markdown.lua index 0119ac0..f6fb02d 100644 --- a/nvim/lua/plugins/lang/markdown.lua +++ b/nvim/lua/plugins/lang/markdown.lua @@ -4,7 +4,8 @@ return { opts = function(_, opts) opts.ensure_installed = opts.ensure_installed or {} vim.list_extend(opts.ensure_installed, { - "marksman", + -- See https://xaked.com/xaked/nvim/issues/9 + -- "marksman", "mdformat", }) end, @@ -19,14 +20,15 @@ return { }) end, }, - { - "neovim/nvim-lspconfig", - opts = { - servers = { - marksman = {}, - }, - }, - }, + -- See https://xaked.com/xaked/nvim/issues/9 + -- { + -- "neovim/nvim-lspconfig", + -- opts = { + -- servers = { + -- marksman = {}, + -- }, + -- }, + -- }, { "nvim-treesitter/nvim-treesitter", opts = function(_, opts)