Config
This commit is contained in:
parent
7201dc4801
commit
be36a60446
36 changed files with 800 additions and 7 deletions
28
lua/custom/plugins/copilot.lua
Normal file
28
lua/custom/plugins/copilot.lua
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
return {
|
||||
"zbirenbaum/copilot.lua",
|
||||
lazy = false,
|
||||
opts = {
|
||||
filetypes = {
|
||||
["*"] = true,
|
||||
},
|
||||
panel = {
|
||||
auto_refresh = false,
|
||||
keymap = {
|
||||
accept = "<CR>",
|
||||
jump_prev = "[[",
|
||||
jump_next = "]]",
|
||||
refresh = "gr",
|
||||
open = "<M-CR>",
|
||||
},
|
||||
},
|
||||
suggestion = {
|
||||
auto_trigger = true,
|
||||
keymap = {
|
||||
accept = "<M-l>",
|
||||
prev = "<M-[>",
|
||||
next = "<M-]>",
|
||||
dismiss = "<C-]>",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue