16 lines
463 B
Lua
16 lines
463 B
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.dracula-nvim" },
|
|
{
|
|
"Mofiqul/dracula.nvim",
|
|
opts = {
|
|
transparent_bg = true,
|
|
},
|
|
},
|
|
|
|
{ import = "astrocommunity.completion.copilot-lua-cmp" },
|
|
}
|