feat(nvim): add GitHub CLI plugin for Telescope

This commit is contained in:
Stefan Imhoff
2022-10-01 15:50:06 +02:00
parent a394ca6ef7
commit 9573b4bd0d
2 changed files with 2 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ telescope.load_extension("fzf")
telescope.load_extension("harpoon")
telescope.load_extension("projects")
telescope.load_extension("heading")
telescope.load_extension("gh")
-- Keymaps
keymap("n", "<C-p>", [[<Cmd>Telescope find_files<CR>]], opts)

View File

@@ -94,6 +94,7 @@ return packer.startup(function(use)
use("crispgm/telescope-heading.nvim") -- Jump between headings
use({ "nvim-telescope/telescope-fzf-native.nvim", run = "make" })
use({ "nvim-telescope/telescope-frecency.nvim", requires = { "tami5/sqlite.lua" } }) -- Frequency and recency
use("nvim-telescope/telescope-github.nvim") -- GitHub CLI
-- Treesitter
use({ "nvim-treesitter/nvim-treesitter", run = ":TSUpdate" })