You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB

return {
{
"monaqa/dial.nvim",
config = function()
local augend = require "dial.augend"
require("dial.config").augends:register_group {
default = {
augend.constant.new {
elements = { "and", "or" },
word = true,
cyclic = true,
},
augend.constant.new {
elements = { "true", "false" },
word = true,
cyclic = true,
},
augend.constant.new {
elements = { "True", "False" },
word = true,
cyclic = true,
},
augend.constant.new {
elements = { "&&", "||" },
word = false,
cyclic = true,
},
augend.constant.new {
elements = { "&", "|" },
word = false,
cyclic = true,
},
augend.constant.new {
elements = { "y/n", "n/y" },
word = false,
cyclic = true,
},
augend.constant.new {
elements = { "yes", "no" },
word = false,
cyclic = true,
},
augend.constant.new {
elements = { "get", "post", "put", "patch", "delete" },
word = false,
cyclic = true,
},
augend.constant.new {
elements = { "GET", "POST", "PUT", "PATCH", "DELETE" },
word = false,
cyclic = true,
},
},
}
end,
},
}