14 lines
332 B
Lua
14 lines
332 B
Lua
|
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,
|
||
|
},
|
||
|
}
|