mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
13 lines
320 B
Lua
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,
|
|
},
|
|
}
|