mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-14 22:22:55 +00:00
18 lines
440 B
Lua
18 lines
440 B
Lua
|
-- ===========================================================================
|
||
|
-- Settings
|
||
|
-- ===========================================================================
|
||
|
|
||
|
vim.filetype.add({
|
||
|
pattern = {
|
||
|
[".*%.tfvars"] = "hcl",
|
||
|
-- [".*%.tf"] = "hcl",
|
||
|
},
|
||
|
})
|
||
|
|
||
|
vim.api.nvim_create_autocmd("FileType", {
|
||
|
pattern = "*.eml",
|
||
|
callback = function()
|
||
|
vim.o.wrapmargin = 79 -- Wrap text automatically
|
||
|
end,
|
||
|
})
|