-
-
Notifications
You must be signed in to change notification settings - Fork 151
Labels
bugSomething isn't workingSomething isn't working
Description
Nothing added to quickfix with gqa and no suggestions appear as diffs in the buffer.
I don't believe I've changed anything as it pertains to the model

init.lua
vim.opt.completeopt = { "menu", "menuone", "noinsert", "noselect", "popup" }
-- Bootstrap Lazy.nvim
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", lazypath
})
end
vim.opt.rtp:prepend(lazypath)
-- Plugin specification
require("lazy").setup({
{
'rebelot/kanagawa.nvim',
priority = 1000,
config = function()
vim.cmd("colorscheme kanagawa")
end,
},
{
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
config = function()
require('nvim-treesitter.configs').setup({
ensure_installed = { 'lua', 'vimdoc', 'typescript', 'tsx', 'diff' },
highlight = { enable = true },
})
end,
},
{
'nvim-mini/mini.pick',
config = function()
require('mini.pick').setup()
vim.ui.select = require('mini.pick').ui_select
end,
},
-- Copilot Chat
{
'CopilotC-Nvim/CopilotChat.nvim',
dependencies = {
{ 'nvim-lua/plenary.nvim', branch = "master" },
},
},
}, {
defaults = { lazy = false },
install = { colorscheme = { "kanagawa" } },
checker = { enabled = true },
})
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working