Replies: 1 comment
-
Minimal repro local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
{
"zbirenbaum/copilot.lua",
event = "InsertEnter",
config = function()
require("copilot").setup({
suggestion = {
enabled = true,
auto_trigger = true,
keymap = {
accept = "<C-l>",
},
},
})
end,
},
})
vim.opt.compatible = false
vim.opt.termguicolors = true nvim -u /tmp/minimal_init.lua /tmp/minimal_init.lua |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have Ctrl+L usually assigned to moving to the right panel on tmux:
But I was always able to overrride it when in insert mode and with a suggestion pending on copilot.lua:
Does anyone know why this would break and if it's possible to fix it?
Beta Was this translation helpful? Give feedback.
All reactions