2024-02-13 22:00:50 +03:00
|
|
|
-- AstroCommunity: import any community modules here
|
2024-02-14 19:12:47 +03:00
|
|
|
-- We import this file in `lazy_setup.lua` before the `plugins/` folder.
|
|
|
|
-- This guarantees that the specs are processed before any user plugins.
|
|
|
|
|
2024-02-13 22:00:50 +03:00
|
|
|
---@type LazySpec
|
|
|
|
return {
|
2024-04-01 16:09:55 +03:00
|
|
|
"AstroNvim/astrocommunity",
|
2024-02-13 22:00:50 +03:00
|
|
|
{ import = "astrocommunity.pack.lua" },
|
|
|
|
-- import/override with your plugins folder
|
2024-04-23 23:17:09 +03:00
|
|
|
|
|
|
|
-- Color scheme
|
|
|
|
{ import = "astrocommunity.colorscheme.catppuccin", enabled = true },
|
|
|
|
|
|
|
|
-- python
|
|
|
|
{ import = "astrocommunity.pack.python" },
|
|
|
|
|
|
|
|
-- css and html
|
|
|
|
{ import = "astrocommunity.pack.json" },
|
|
|
|
|
2024-05-05 00:47:39 +03:00
|
|
|
-- extended diagnostic
|
|
|
|
{ import = "astrocommunity.diagnostics.lsp_lines-nvim" },
|
|
|
|
|
2024-02-13 22:00:50 +03:00
|
|
|
}
|