mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 01:38:47 +02:00
7 lines
185 B
Lua
7 lines
185 B
Lua
local data_exists, frmt = pcall(require, "custom.format_onsave")
|
|
if not data_exists then
|
|
require("user.format_onsave")
|
|
end
|
|
if frmt.disable == 0 then
|
|
require("user.format_onsave")
|
|
end
|