mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix(lang.haskell): prevent Haskell extras from installing telescope.nvim
Installing the Haskell extras currently installs telescope.nvim as well, since the dependency is not marked optional. This marks it optional so telescope.nvim is no longer pulled in automatically.
This commit is contained in:
parent
25abbf546d
commit
bdf775da65
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ return {
|
|||
"luc-tielen/telescope_hoogle",
|
||||
ft = { "haskell", "lhaskell", "cabal", "cabalproject" },
|
||||
dependencies = {
|
||||
{ "nvim-telescope/telescope.nvim" },
|
||||
{ "nvim-telescope/telescope.nvim", optional = true },
|
||||
},
|
||||
config = function()
|
||||
local ok, telescope = pcall(require, "telescope")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue