fork from astro nvim configuration template

This commit is contained in:
2025-09-15 16:55:49 +08:00
commit c022fe2f92
21 changed files with 805 additions and 0 deletions

46
lua/community.lua Normal file
View File

@@ -0,0 +1,46 @@
-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
-- 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",
-- color
{ import = "astrocommunity.color.ccc-nvim" },
-- languages
{ import = "astrocommunity.pack.docker" },
{ import = "astrocommunity.pack.elixir-phoenix" },
{ import = "astrocommunity.pack.go" },
{ import = "astrocommunity.pack.lua" },
{ import = "astrocommunity.pack.markdown" },
{ import = "astrocommunity.pack.python" },
{ import = "astrocommunity.pack.ruby" },
{ import = "astrocommunity.pack.rust" },
{ import = "astrocommunity.pack.typescript" },
{ import = "astrocommunity.pack.vue" },
{ import = "astrocommunity.pack.xml" },
{ import = "astrocommunity.pack.yaml" },
-- markdown
{ import = "astrocommunity.markdown-and-latex.markview-nvim" },
-- ident
{ import = "astrocommunity.indent.indent-rainbowline" },
-- cmp
{ import = "astrocommunity.completion.blink-cmp" },
{ import = "astrocommunity.completion.copilot-vim-cmp" },
-- theme
{ import = "astrocommunity.colorscheme.catppuccin" },
-- motions
{ import = "astrocommunity.motion.flash-nvim" },
-- recipes
{ import = "astrocommunity.recipes.auto-session-restore" },
}