dotfiles/modules/common/neovim/lua/settings.lua
2023-06-01 22:55:05 -04:00

19 lines
470 B
Lua

-- ===========================================================================
-- Settings
-- ===========================================================================
vim.filetype.add({
pattern = {
[".*%.tfvars"] = "hcl",
-- [".*%.tf"] = "hcl",
[".*%.rasi"] = "css",
},
})
vim.api.nvim_create_autocmd("FileType", {
pattern = "*.eml",
callback = function()
vim.o.wrapmargin = 79 -- Wrap text automatically
end,
})