feat: restructure config

This commit is contained in:
Devin Lumley 2024-01-10 12:20:20 -08:00
parent 01060300d1
commit 9ade6862af
5 changed files with 43 additions and 41 deletions

View file

@ -2,6 +2,6 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
pattern = { "gitcommit", "markdown", "md", "mdx" },
callback = function()
vim.opt_local.spell = true
vim.opt.wrap = true
vim.opt_local.wrap = true
end
})