astronvim_config/lua/community.lua
2024-06-03 14:41:29 +02:00

22 lines
704 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" },
{
"willothy/flatten.nvim",
opts = {
window = {
open = "smart",
},
},
},
-- import/override with your plugins folder
}