fix(extras): added recommended for helm/haskell

This commit is contained in:
Folke Lemaitre 2024-06-05 17:36:02 +02:00
parent 106130f4cd
commit ca0b9ee915
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 13 additions and 0 deletions

View file

@ -1,4 +1,10 @@
return {
recommended = function()
return LazyVim.extras.wants({
ft = { "haskell", "lhaskell" },
root = { "hie.yaml", "stack.yaml", "cabal.project", "*.cabal", "package.yaml" },
})
end,
-- Add Haskell to treesitter
{

View file

@ -9,6 +9,13 @@ LazyVim.lsp.on_attach(function(client, buffer)
end)
return {
recommended = function()
return LazyVim.extras.wants({
ft = "helm",
root = "Chart.yaml",
})
end,
{ "towolf/vim-helm", ft = "helm" },
{
"neovim/nvim-lspconfig",