40 lines
1.3 KiB
Lua
40 lines
1.3 KiB
Lua
-- 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.colorscheme.catppuccin" },
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
opts = function(_, config)
|
|
config.flavour = "frappe"
|
|
config.transparent_background = true
|
|
end,
|
|
},
|
|
|
|
{ import = "astrocommunity.editing-support.todo-comments-nvim" },
|
|
|
|
{ import = "astrocommunity.motion.flash-nvim" },
|
|
{ import = "astrocommunity.motion.flit-nvim" },
|
|
{ import = "astrocommunity.motion.leap-nvim" },
|
|
{ import = "astrocommunity.motion.mini-ai" },
|
|
{ import = "astrocommunity.motion.mini-surround" },
|
|
|
|
{ import = "astrocommunity.pack.cmake" },
|
|
{ import = "astrocommunity.pack.cpp" },
|
|
{ import = "astrocommunity.pack.godot" },
|
|
{ import = "astrocommunity.pack.html-css" },
|
|
{ import = "astrocommunity.pack.json" },
|
|
{ import = "astrocommunity.pack.lua" },
|
|
{ import = "astrocommunity.pack.markdown" },
|
|
{ import = "astrocommunity.pack.nix" },
|
|
{ import = "astrocommunity.pack.rust" },
|
|
{ import = "astrocommunity.pack.toml" },
|
|
{ import = "astrocommunity.pack.typescript" },
|
|
{ import = "astrocommunity.pack.vue" },
|
|
{ import = "astrocommunity.pack.yaml" },
|
|
}
|