feat: terroform higligth

This commit is contained in:
ralvescosta 2025-03-21 05:26:02 -03:00
parent 82aafd2d21
commit 1dcd891d08
2 changed files with 9 additions and 2 deletions

View File

@ -49,7 +49,14 @@ return {
end, end,
}, },
completion = { completeopt = 'menu,menuone,noinsert' }, completion = { completeopt = 'menu,menuone,noinsert' },
window = {
completion = {
border = 'single',
},
documentation = {
border = 'single',
},
},
-- For an understanding of why these mappings were -- For an understanding of why these mappings were
-- chosen, you will need to read `:help ins-completion` -- chosen, you will need to read `:help ins-completion`
-- --

View File

@ -39,7 +39,7 @@ return {
-- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules. -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules.
-- If you are experiencing weird indenting issues, add the language to -- If you are experiencing weird indenting issues, add the language to
-- the list of additional_vim_regex_highlighting and disabled languages for indent. -- the list of additional_vim_regex_highlighting and disabled languages for indent.
additional_vim_regex_highlighting = { 'ruby', 'go' }, additional_vim_regex_highlighting = { 'ruby', 'go', 'terraform' },
}, },
indent = { enable = true, disable = { 'ruby', 'go' } }, indent = { enable = true, disable = { 'ruby', 'go' } },
}, },