mirror of
https://github.com/morten-olsen/astrovim.git
synced 2026-02-08 01:46:27 +01:00
24 lines
671 B
Lua
24 lines
671 B
Lua
return {
|
|
"AstroNvim/astrocommunity",
|
|
{ import = "astrocommunity.completion.copilot-lua" },
|
|
{ -- further customize the options set by the community
|
|
"zbirenbaum/copilot.lua",
|
|
opts = {
|
|
suggestion = {
|
|
keymap = {
|
|
accept = "<C-l>",
|
|
accept_word = false,
|
|
accept_line = false,
|
|
next = "<C-.>",
|
|
prev = "<C-,>",
|
|
dismiss = "<C/>",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
--{ import = "astrocommunity.indent/indent-blankline-nvim" },
|
|
{ import = "astrocommunity.code-runner.overseer-nvim" },
|
|
{ import = "astrocommunity.motion.portal-nvim" },
|
|
{ import = "astrocommunity.file-explorer.oil-nvim" },
|
|
}
|