mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-02 21:44:37 +02:00
fix(extras): added recommended for helm/haskell
This commit is contained in:
parent
106130f4cd
commit
ca0b9ee915
2 changed files with 13 additions and 0 deletions
|
@ -1,4 +1,10 @@
|
||||||
return {
|
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
|
-- Add Haskell to treesitter
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,6 +9,13 @@ LazyVim.lsp.on_attach(function(client, buffer)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
recommended = function()
|
||||||
|
return LazyVim.extras.wants({
|
||||||
|
ft = "helm",
|
||||||
|
root = "Chart.yaml",
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
|
||||||
{ "towolf/vim-helm", ft = "helm" },
|
{ "towolf/vim-helm", ft = "helm" },
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue