From b913bdacfdcdb05a19326019d14d9b240ac689e1 Mon Sep 17 00:00:00 2001 From: Pieter Joost van de Sande Date: Thu, 23 Mar 2023 21:42:24 +0100 Subject: [PATCH] fix: fix branch for base46 plugin The base46 doesn't use the main branch for v1, but master. --- lua/plugins/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index a21c6c0..e380eea 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -14,7 +14,7 @@ local plugins = { ["NvChad/extensions"] = { branch = "main", module = { "telescope", "nvchad" } }, ["NvChad/base46"] = { - branch = "main", + branch = "master", config = function() local ok, base46 = pcall(require, "base46")