This commit is contained in:
Price Hiller 2022-05-19 16:48:31 -05:00
parent e0a928e26a
commit 1b9aab9e7f
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,6 @@
vim.api.nvim_create_autocmd("BufWrite", {
pattern = "*",
callback = function ()
vim.cmd("Neoformat")
end
})

View File

@ -1,3 +1,4 @@
-- Anything that needs to be loaded LAST
-- needs to required here
require('plugins.mappings')
require('plugins.autocmds')