[grapple] Add grapple

This commit is contained in:
2023-12-23 00:11:48 +01:00
parent 29ec6d797a
commit 1c99d0503b
2 changed files with 38 additions and 0 deletions
+5
View File
@@ -234,6 +234,11 @@ local plugins = {
branch = "anticonceal", branch = "anticonceal",
config = require("plugins.lsp-inlayhints"), config = require("plugins.lsp-inlayhints"),
}, },
{
"cbochs/grapple.nvim",
dependencies = { "nvim-lua/plenary.nvim", },
config = require("plugins.grapple"),
},
{ {
"is0n/fm-nvim", "is0n/fm-nvim",
config = require("plugins.fm-nvim"), config = require("plugins.fm-nvim"),
+33
View File
@@ -0,0 +1,33 @@
--[[
Copyright 2023 Oscar Wallberg
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]]
-- https://github.com/cbochs/grapple.nvim
local function setup()
local grapple = require("grapple")
grapple.setup()
vim.keymap.set("n", "<leader>'", grapple.popup_tags)
for i = 1, 9 do
vim.keymap.set("n", "<leader>m" .. i, function ()
grapple.tag({ key = "m" .. i, })
end)
vim.keymap.set("n", "<leader>" .. i, function ()
grapple.select({ key = "m" .. i, })
end)
end
end
return setup