nvim/lua/community.lua

27 lines
647 B
Lua
Raw Permalink Normal View History

2024-07-11 15:32:22 +05:30
-- 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 {
2024-07-15 13:48:37 +05:30
"AstroNvim/astrocommunity",
2024-08-27 20:26:51 +05:30
{ import = "astrocommunity.recipes.telescope-lsp-mappings" },
2024-07-15 13:48:37 +05:30
{ import = "astrocommunity.pack.lua" },
2024-07-15 14:19:03 +05:30
{ 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/>",
},
},
},
},
2024-07-11 15:32:22 +05:30
}