27 lines
629 B
Lua
27 lines
629 B
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.pack.lua" },
|
|
-- import/override with your plugins folder
|
|
{ import = "astrocommunity.completion.copilot-lua" },
|
|
{
|
|
"copilot.lua",
|
|
opts = {
|
|
suggestion = {
|
|
keymap = {
|
|
accept = "<A-k>",
|
|
accept_word = "<C-e>",
|
|
accept_line = "<C-L>",
|
|
next = "<A-l>",
|
|
prev = "<A-h>",
|
|
dismiss = "<C/>",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|