fix(terraform): configure commentstring

This commit is contained in:
Robson Roberto Souza Peixoto 2023-07-20 12:20:19 -03:00
parent abaa6d90e4
commit ff5fca27b9
No known key found for this signature in database

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