11 lines
296 B
Lua
11 lines
296 B
Lua
vim.api.nvim_create_user_command("FormatDisable", function()
|
|
vim.g.disable_autoformat = true
|
|
end, {
|
|
desc = "Disable autoformat on save",
|
|
})
|
|
|
|
vim.api.nvim_create_user_command("FormatEnable", function()
|
|
vim.g.disable_autoformat = false
|
|
end, {
|
|
desc = "Enable autoformat on save",
|
|
})
|