6 lines
133 B
Lua
6 lines
133 B
Lua
vim.api.nvim_create_autocmd({ "InsertLeave", "TextChanged" }, {
|
|
pattern = { "*" },
|
|
command = "silent! wall",
|
|
nested = true,
|
|
})
|