nvim/lua/autocmds.lua
2025-03-20 10:17:00 -04:00

6 lines
133 B
Lua

vim.api.nvim_create_autocmd({ "InsertLeave", "TextChanged" }, {
pattern = { "*" },
command = "silent! wall",
nested = true,
})