chezmoi/dot_config/nvim/lua/plugins/sourcegraph-copilot.lua

14 lines
332 B
Lua
Raw Normal View History

return {
{
"sourcegraph/sg.nvim",
enabled = false,
dependencies = { "nvim-lua/plenary.nvim", "nvim-telescope/telescope.nvim" },
-- If you have a recent version of lazy.nvim, you don't need to add this!
-- build = "nvim -l build/init.lua",
config = function()
require("sg").setup({})
end,
},
}