feat: more editor plugins
This commit is contained in:
parent
a266489958
commit
a38042d73e
13 changed files with 151 additions and 35 deletions
12
lua/custom/plugins/flit.lua
Normal file
12
lua/custom/plugins/flit.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"ggandor/flit.nvim",
|
||||
keys = function()
|
||||
---@type LazyKeys[]
|
||||
local ret = {}
|
||||
for _, key in ipairs({ "f", "F", "t", "T" }) do
|
||||
ret[#ret + 1] = { key, mode = { "n", "x", "o" }, desc = key }
|
||||
end
|
||||
return ret
|
||||
end,
|
||||
opts = { labeled_modes = "nx" },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue