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

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",