diff --git a/lazy-lock.json b/lazy-lock.json index b5bd74e..8dc6956 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -44,6 +44,7 @@ "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, "tardis.nvim": { "branch": "main", "commit": "f050686a6c299dba95d07990550174c20aba56dd" }, "telescope.nvim": { "branch": "master", "commit": "b4da76be54691e854d3e0e02c36b0245f945c2c7" }, + "telescope_hoogle": { "branch": "master", "commit": "14be34fd5c464e3da0992ad094f157b0b8b098f9" }, "treesj": { "branch": "main", "commit": "925b506eadd9b465e6e577bb684d86e9863a2e21" }, "trouble.nvim": { "branch": "main", "commit": "85bedb7eb7fa331a2ccbecb9202d8abba64d37b3" }, "vim-illuminate": { "branch": "master", "commit": "0d1e93684da00ab7c057410fecfc24f434698898" }, diff --git a/lua/plugins.lua b/lua/plugins.lua index 43d8810..39ab572 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -569,6 +569,19 @@ local plugins = { vim.keymap.set({ "n", "v" }, "d", ":Linediff ", { desc = "Linediff" }) end }, + { + "luc-tielen/telescope_hoogle", + config = function () + local telescope = require('telescope') + -- telescope.setup { + -- -- opts... + -- } + telescope.load_extension('hoogle') + end, + dependencies = { + "nvim-telescope/telescope.nvim" + } + }, } return plugins