diff options
Diffstat (limited to 'lua/ache')
| -rw-r--r-- | lua/ache/plugins/alternate-toggler.lua | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/lua/ache/plugins/alternate-toggler.lua b/lua/ache/plugins/alternate-toggler.lua index d9893e3..71ce55a 100644 --- a/lua/ache/plugins/alternate-toggler.lua +++ b/lua/ache/plugins/alternate-toggler.lua @@ -7,12 +7,15 @@ return { config = function() require("alternate-toggler").setup({ alternates = { - ["true"] = "false", - ["oui"] = "non", - ["Oui"] = "Non", - ["OUI"] = "NON", - [">="] = "<=", - ["=="] = "!=", + { "true", "false" }, + { "oui", "non" }, + { "Oui", "Non" }, + { "OUI", "NON" }, + { ">=", "<=" }, + { "==", "!=" }, + { "public", "private", "protected" }, + { "info", "warn", "error", "debug", "trace" }, + { "left", "center", "right" }, }, }) |