AstroNvim_template/lua/community.lua

24 lines
645 B
Lua
Raw Normal View History

-- 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
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" },
}