This commit is contained in:
Morten Olsen
2023-03-15 18:16:11 +01:00
commit 4bd2977f90
8 changed files with 112 additions and 0 deletions

23
plugins/misc.lua Normal file
View File

@@ -0,0 +1,23 @@
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" },
}