-
Screen.Recording.2025-08-05.at.00.37.01.movwhen I press on context selection, it does not trigger picker selection what am I missing? here is my minimal.lua minimal.lua-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
-- Make sure to setup `mapleader` and `maplocalleader` before
-- loading lazy.nvim so that mappings are correct.
-- This is also a good place to setup other settings (vim.opt)
vim.g.mapleader = "\\"
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- add your plugins here
{
'CopilotC-Nvim/CopilotChat.nvim',
dependencies = {
{ "nvim-lua/plenary.nvim", branch = "master" },
'nvim-telescope/telescope-ui-select.nvim',
},
build = "make tiktoken",
opts = {},
config = function(_, opts)
require("CopilotChat").setup(opts)
end,
},
{
"nvim-telescope/telescope.nvim",
tag = "0.1.8",
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-telescope/telescope-ui-select.nvim',
},
keys = {
{ "<leader>ff", "<cmd>Telescope find_files<cr>", desc = "Find Files" },
{ "<leader>fg", "<cmd>Telescope live_grep<cr>", desc = "Live Grep" },
{ "<leader>fb", "<cmd>Telescope buffers<cr>", desc = "Buffers" },
{ "<leader>fh", "<cmd>Telescope help_tags<cr>", desc = "Help Tags" },
{ "<leader>fr", "<cmd>Telescope lsp_references<cr>", desc = "LSP References" },
{ "<leader>fi", "<cmd>Telescope lsp_implementations<cr>", desc = "LSP Implementations" },
},
config = function()
require("telescope").setup({
extensions = {
["ui-select"] = {
require("telescope.themes").get_dropdown {
-- even more opts
}
},
},
})
require("telescope").load_extension("ui-select")
end,
},
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates
checker = { enabled = true },
}) System Info
|
Beta Was this translation helpful? Give feedback.
Answered by
deathbeam
Aug 4, 2025
Replies: 1 comment 5 replies
-
https://github.com/CopilotC-Nvim/CopilotChat.nvim/releases/tag/v4.0.0 Default mapping was changed from You can change it with |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
deathbeam
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/CopilotC-Nvim/CopilotChat.nvim/releases/tag/v4.0.0
Default mapping was changed from
<Tab>
to<C-Space>
You can change it with
config.mappings.complete.insert = "<Tab>"