39 lines
1.4 KiB
Lua
39 lines
1.4 KiB
Lua
return {
|
|
-- Add the community repository of plugin specifications
|
|
"AstroNvim/astrocommunity",
|
|
-- example of importing a plugin, comment out to use it or add your own
|
|
-- available plugins can be found at https://github.com/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-all-in-one" },
|
|
{ import = "astrocommunity.pack.vue" },
|
|
{ import = "astrocommunity.pack.yaml" },
|
|
}
|