Files
dotfiles/nix/home/neovim/nvim/lua/plugins/telescope-github.lua
2024-07-31 11:36:56 +02:00

16 lines
425 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",
keys = {
{ ";p", "<cmd>Telescope gh pull_request<cr>", desc = "GitHub Pull Requests" },
},
config = function()
require("telescope").load_extension("gh")
end,
},
}