astro-nvim/lua/community.lua

24 lines
1,011 B
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",
{ import = "astrocommunity.pack.typescript" },
2023-10-14 22:54:14 +00:00
{ import = "astrocommunity.pack.lua" },
{ import = "astrocommunity.pack.python" },
{ import = "astrocommunity.pack.html-css" },
2023-10-29 23:23:33 +00:00
{ import = "astrocommunity.pack.vue" },
2024-04-26 23:36:05 +00:00
{ import = "astrocommunity.pack.rust" },
2024-04-30 22:44:16 +00:00
{ import = "astrocommunity.pack.sql" },
{ import = "astrocommunity.pack.yaml" },
2023-10-14 22:54:14 +00:00
{ import = "astrocommunity.editing-support.ultimate-autopair-nvim" },
{ import = "astrocommunity.indent.indent-blankline-nvim" },
{ import = "astrocommunity.indent.mini-indentscope" },
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" },
2024-04-30 22:44:16 +00:00
{ import = "astrocommunity.lsp.lsp-signature-nvim" },
{ import = "astrocommunity.lsp.lsp-lens-nvim" },
2023-10-14 22:54:14 +00:00
}