Skip to content

Commit

Permalink
feat(terraform): ensure tflint is installed (#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbnj committed May 15, 2024
1 parent 914ca4a commit 16e6c86
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lua/lazyvim/plugins/extras/lang/terraform.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ return {
},
},
},
-- ensure terraform tools are installed
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "tflint" })
end,
},
{
"nvimtools/none-ls.nvim",
optional = true,
Expand Down

0 comments on commit 16e6c86

Please sign in to comment.