fix(terraform-extra): Drop unnecessary commentstring config for terraform (#2680)

* fix(terraform-extra): Drop unnecessary commentstring config for terraform

The commentstring for terraform and hcl files is now handled by nvim-ts-context-commentstring:

JoosepAlviste/nvim-ts-context-commentstring#94

* Fixed terraform.lua issues. I'm bad.
This commit is contained in:
Adam Stracener 2024-03-09 01:59:44 -06:00 committed by GitHub
parent e3bfcb9bf7
commit b12e742458
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,11 +1,5 @@
local Util = require("lazyvim.util")
vim.api.nvim_create_autocmd("FileType", {
pattern = { "hcl", "terraform" },
desc = "terraform/hcl commentstring configuration",
command = "setlocal commentstring=#\\ %s",
})
return {
{
"nvim-treesitter/nvim-treesitter",