mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
16 lines
425 B
Lua
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,
|
|
},
|
|
}
|