mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 17:03:36 +02:00
8 lines
185 B
Lua
8 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
|