fix(terraform): configure commentstring (#1171)

This commit is contained in:
Robson Roberto Souza Peixoto 2023-07-22 04:10:37 -03:00 committed by GitHub
parent d71ebeab24
commit e5f53ee193
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,9 @@
vim.api.nvim_create_autocmd("FileType", {
pattern = { "hcl", "terraform" },
desc = "terraform/hcl commentstring configuration",
command = "setlocal commentstring=#\\ %s",
})
return {
{
"nvim-treesitter/nvim-treesitter",