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[]
|
||||
local plugins = {
|
||||
|
@ -16,7 +16,7 @@ local plugins = {
|
|||
-- override plugin configs
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
opts = overrides.mason
|
||||
opts = overrides.mason,
|
||||
},
|
||||
|
||||
{
|
||||
|
@ -46,6 +46,12 @@ local plugins = {
|
|||
require "custom.configs.conform"
|
||||
end,
|
||||
},
|
||||
{
|
||||
"ggandor/leap.nvim",
|
||||
config = function()
|
||||
require("leap").create_default_mappings()
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
return plugins
|
||||
|
|
Loading…
Reference in New Issue