astro-nvim/lua/community.lua

38 lines
1.4 KiB
Lua
Raw Normal View History

2024-04-27 21:45:20 +00:00
-- 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
2023-10-14 22:54:14 +00:00
return {
"AstroNvim/astrocommunity",
2025-01-06 01:27:27 +00:00
{ import = "astrocommunity.colorscheme.catppuccin" },
2025-01-14 01:41:13 +00:00
{ import = "astrocommunity.diagnostics.lsp_lines-nvim" },
2025-01-06 01:27:27 +00:00
{ import = "astrocommunity.diagnostics.trouble-nvim" },
2025-01-14 01:41:13 +00:00
{ import = "astrocommunity.editing-support.rainbow-delimiters-nvim" },
2023-10-14 22:54:14 +00:00
{ import = "astrocommunity.editing-support.ultimate-autopair-nvim" },
2025-01-06 01:27:27 +00:00
2023-10-14 22:54:14 +00:00
{ import = "astrocommunity.indent.indent-blankline-nvim" },
2025-01-14 01:41:13 +00:00
{ import = "astrocommunity.indent.indent-rainbowline" },
2025-01-06 01:27:27 +00:00
{ import = "astrocommunity.lsp.lsp-lens-nvim" },
2025-01-14 00:38:22 +00:00
{ import = "astrocommunity.lsp.lsplinks-nvim" },
{ import = "astrocommunity.lsp.lspsaga-nvim" },
2025-01-06 01:27:27 +00:00
{ import = "astrocommunity.lsp.lsp-signature-nvim" },
2024-04-28 01:56:17 +00:00
{ import = "astrocommunity.media.cord-nvim" },
2024-05-09 22:29:20 +00:00
{ import = "astrocommunity.media.vim-wakatime" },
2025-01-06 01:27:27 +00:00
{ import = "astrocommunity.pack.cs-omnisharp" },
{ import = "astrocommunity.pack.html-css" },
{ import = "astrocommunity.pack.nix" },
{ import = "astrocommunity.pack.python" },
{ import = "astrocommunity.pack.rust" },
{ import = "astrocommunity.pack.sql" },
{ import = "astrocommunity.pack.toml" },
{ import = "astrocommunity.pack.typescript" },
{ import = "astrocommunity.pack.vue" },
{ import = "astrocommunity.pack.yaml" },
2023-10-14 22:54:14 +00:00
}