chore: remove unnecessary branches for release

pull/9/head
Micah Halter 2024-04-01 09:09:55 -04:00
parent 782aa957e2
commit 1a1b69ac3e
No known key found for this signature in database
GPG Key ID: 4224A6EA9A8CAAA8
2 changed files with 2 additions and 3 deletions

View File

@ -6,8 +6,7 @@ if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
---@type LazySpec ---@type LazySpec
return { return {
-- TODO: Remove branch v4 on release "AstroNvim/astrocommunity",
{ "AstroNvim/astrocommunity", branch = "v4" },
{ import = "astrocommunity.pack.lua" }, { import = "astrocommunity.pack.lua" },
-- import/override with your plugins folder -- import/override with your plugins folder
} }

View File

@ -1,7 +1,7 @@
require("lazy").setup({ require("lazy").setup({
{ {
"AstroNvim/AstroNvim", "AstroNvim/AstroNvim",
branch = "v4", -- TODO: change `branch="v4"` to `version="^4"` on release version = "^4",
import = "astronvim.plugins", import = "astronvim.plugins",
opts = { -- AstroNvim options must be set here with the `import` key opts = { -- AstroNvim options must be set here with the `import` key
mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up mapleader = " ", -- This ensures the leader key must be configured before Lazy is set up