From 07471f5d48d994c87c3200d8914de5ce1c88419e Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Tue, 8 Jul 2025 23:28:13 +0200 Subject: [PATCH] Fix treesitter - markview clash that causes sytax issues in markview when treesitter loads first. --- nvim/lua/plugs/markview.lua | 6 +++++- nvim/lua/plugs/treesitter.lua | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nvim/lua/plugs/markview.lua b/nvim/lua/plugs/markview.lua index 85129d0..4181a8d 100644 --- a/nvim/lua/plugs/markview.lua +++ b/nvim/lua/plugs/markview.lua @@ -1,4 +1,8 @@ return { "OXY2DEV/markview.nvim", - lazy = false + lazy = false, + priority = 49, + dependencies = { + "saghen/blink.cmp" + }, } diff --git a/nvim/lua/plugs/treesitter.lua b/nvim/lua/plugs/treesitter.lua index 0a6343c..43abe76 100644 --- a/nvim/lua/plugs/treesitter.lua +++ b/nvim/lua/plugs/treesitter.lua @@ -12,6 +12,7 @@ return { } }, "nvim-treesitter/nvim-treesitter-textobjects", + "OXY2DEV/markview.nvim", }, config = function() require("nvim-treesitter.configs").setup({