leap add
This commit is contained in:
parent
0bf822d2a2
commit
dd55f5aaf1
10
plugins.lua
10
plugins.lua
|
@ -1,4 +1,4 @@
|
||||||
local overrides = require("custom.configs.overrides")
|
local overrides = require "custom.configs.overrides"
|
||||||
|
|
||||||
---@type NvPluginSpec[]
|
---@type NvPluginSpec[]
|
||||||
local plugins = {
|
local plugins = {
|
||||||
|
@ -16,7 +16,7 @@ local plugins = {
|
||||||
-- override plugin configs
|
-- override plugin configs
|
||||||
{
|
{
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
opts = overrides.mason
|
opts = overrides.mason,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -46,6 +46,12 @@ local plugins = {
|
||||||
require "custom.configs.conform"
|
require "custom.configs.conform"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"ggandor/leap.nvim",
|
||||||
|
config = function()
|
||||||
|
require("leap").create_default_mappings()
|
||||||
|
end,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
return plugins
|
return plugins
|
||||||
|
|
Loading…
Reference in New Issue