Skip to content

Commit

Permalink
fix(scope-nvim): Register extension with Telescope (#467)
Browse files Browse the repository at this point in the history
* fix(scope): Register extension with Telescope

* Fix telescope setup

---------

Co-authored-by: Micah Halter <[email protected]>
  • Loading branch information
Sacro and mehalter authored Jul 21, 2023
1 parent c343448 commit 79ad146
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lua/astrocommunity/bars-and-lines/scope-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
return { "tiagovla/scope.nvim", event = "VeryLazy", opts = {} }
return {
{ "tiagovla/scope.nvim", event = "VeryLazy", opts = {} },
{
"nvim-telescope/telescope.nvim",
optional = true,
opts = function() require("telescope").load_extension "scope" end,
},
}

0 comments on commit 79ad146

Please sign in to comment.