From 34900d3bba683152660de9e547e175b53fdd4d0a Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sat, 27 May 2023 03:09:50 +0200 Subject: [PATCH] Added copilot plugin --- config/nvim/lua/user/plugins/community.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 config/nvim/lua/user/plugins/community.lua diff --git a/config/nvim/lua/user/plugins/community.lua b/config/nvim/lua/user/plugins/community.lua new file mode 100644 index 0000000..91a4df2 --- /dev/null +++ b/config/nvim/lua/user/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" }, +}