mirror of
https://github.com/Hydroxycarbamide/astrovim_user.git
synced 2025-05-04 12:19:08 -04:00
16 lines
686 B
Lua
16 lines
686 B
Lua
-- AstroCommunity: import any community modules here
|
|
-- We import this file in `lazy_setup.lua` before the `plugins/` folder.
|
|
-- This guarantees that the specs are processed before any user plugins.
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"AstroNvim/astrocommunity",
|
|
{ import = "astrocommunity.pack.lua" },
|
|
-- import/override with your plugins folder
|
|
{ import = "astrocommunity.colorscheme.catppuccin" },
|
|
{ import = "astrocommunity.colorscheme.rose-pine" },
|
|
--{ import = "astrocommunity.scrolling.nvim-scrollbar" },
|
|
{ import = "astrocommunity.scrolling.satellite-nvim" },
|
|
{ import = "astrocommunity.scrolling.neoscroll-nvim" },
|
|
{ import = "astrocommunity.git.git-blame-nvim" },
|
|
}
|