Files
dotfiles/nvim/lua/plugins/telescope-github.lua
2023-08-05 08:31:51 +02:00

13 lines
320 B
Lua

-- Telescope extension to integrate with GitHub CLI
-- https://github.com/nvim-telescope/telescope-github.nvim
return {
"telescope.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope-github.nvim",
config = function()
require("telescope").load_extension("gh")
end,
},
}