18 lines
437 B
Lua
Raw Normal View History

2022-05-07 17:31:19 -04:00
-- ===========================================================================
-- Settings
-- ===========================================================================
2022-11-20 11:51:46 -07:00
vim.filetype.add({
pattern = {
[".*%.tfvars"] = "hcl",
[".*%.tf"] = "hcl",
2022-11-20 11:51:46 -07:00
},
})
2022-11-27 19:11:41 -07:00
2022-10-30 13:57:14 -04:00
vim.api.nvim_create_autocmd("FileType", {
pattern = "*.eml",
callback = function()
vim.o.wrapmargin = 79 -- Wrap text automatically
end,
})