Noah Masur 1a60c5e9db Revert "remove old neovim lua config"
This reverts commit 2d8a84c286f945ef50ce40c70826e030c2355221.
2023-04-10 15:25:46 -04:00

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,
})