Skip to content

Commit

Permalink
fix(toml): disable taplo in null-ls (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter authored Mar 28, 2023
1 parent 8f20d09 commit e6bfb50
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lua/astrocommunity/pack/toml/toml.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,12 @@ return {
utils.list_insert_unique(opts.ensure_installed, "taplo")
end,
},
{
"jay-babu/mason-null-ls.nvim",
opts = function(_, opts)
-- Ensure that opts.handlers exists and is a table
if not opts.handlers then opts.handlers = {} end
opts.handlers.taplo = function() end
end,
},
}

0 comments on commit e6bfb50

Please sign in to comment.