Initial commit

This commit is contained in:
Jan K9f 2025-07-28 19:32:36 +02:00
commit 056d3e901e
Signed by: jank
GPG key ID: 22BEAC760B3333D6
2 changed files with 143 additions and 0 deletions

14
plugin/jquote.lua Normal file
View file

@ -0,0 +1,14 @@
if vim.g.jquote_loaded then
return
end
vim.g.jquote_loaded = true
local jquote = require("jquote")
local map_opts = {
desc = "Swaps the quotes around",
silent = true,
noremap = true,
}
vim.keymap.set("n", jquote.options.hotkey, jquote.toggle_quotes, map_opts)