24 lines
645 B
Lua
24 lines
645 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
|
|
|
|
-- Color scheme
|
|
{ import = "astrocommunity.colorscheme.catppuccin", enabled = true },
|
|
|
|
-- python
|
|
{ import = "astrocommunity.pack.python" },
|
|
|
|
-- css and html
|
|
{ import = "astrocommunity.pack.json" },
|
|
|
|
-- extended diagnostic
|
|
{ import = "astrocommunity.diagnostics.lsp_lines-nvim" },
|
|
|
|
}
|