feat: add autoformat option in configuration

This commit is contained in:
2024-10-08 04:29:56 -04:00
parent edbbde6269
commit dd372e08dd
2 changed files with 12 additions and 7 deletions
+6 -1
View File
@@ -10,7 +10,12 @@ local types = require("data.types")
--- Auto Save conditional options
M.autosave = function()
return func.check_global_var("auto_save", true, false)
return func.check_global_var("autosave", true, false)
end
-- Auto Format conditional options
M.autoformat = function()
return func.check_global_var("autoformat", true, false)
end
--- Bars-N-Lines conditional options