initial
This commit is contained in:
commit
8cc59af68e
37 changed files with 72435 additions and 0 deletions
57
lua/plugins/dial.lua
Normal file
57
lua/plugins/dial.lua
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue