From f131606190535b0d0b35406e8573b973b48e55b1 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 8 Jun 2023 17:23:02 +0200 Subject: [PATCH] feat(startup): added data/site to the rtp. Will be used by upcoming treesitter version --- lua/lazy/core/config.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 6685a52..12fa8f7 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -204,6 +204,7 @@ function M.setup(opts) if M.options.performance.rtp.reset then vim.opt.rtp = { vim.fn.stdpath("config"), + vim.fn.stdpath("data") .. "/site", M.me, vim.env.VIMRUNTIME, vim.fn.fnamemodify(vim.v.progpath, ":p:h:h") .. "/lib/nvim",