25 lines
771 B
Lua
25 lines
771 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.markdown-and-latex.vimtex",
|
|
},
|
|
{ import = "astrocommunity.git.neogit" },
|
|
{ import = "astrocommunity.git.blame-nvim" },
|
|
{ import = "astrocommunity.editing-support.rainbow-delimiters-nvim" },
|
|
{ import = "astrocommunity.terminal-integration.flatten-nvim" },
|
|
{ import = "astrocommunity.completion.copilot-lua-cmp" },
|
|
{
|
|
"willothy/flatten.nvim",
|
|
opts = {
|
|
window = {
|
|
open = "smart",
|
|
},
|
|
},
|
|
},
|
|
-- import/override with your plugins folder
|
|
}
|