From 056945c13bbb24f927fe78a48ba836186a9cd2a4 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Tue, 28 Feb 2023 11:09:58 -0500 Subject: [PATCH] feat(plugins): add example of using astrocommunity repo --- plugins/community.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugins/community.lua diff --git a/plugins/community.lua b/plugins/community.lua new file mode 100644 index 0000000..6918be5 --- /dev/null +++ b/plugins/community.lua @@ -0,0 +1,9 @@ +return { + -- Add the community repository of plugin specifications + "AstroNvim/astrocommunity", + -- example of imporing 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" }, + -- { import = "astrocommunity.completion.copilot-lua-cmp" }, +}