Initial commit
This commit is contained in:
commit
056d3e901e
2 changed files with 143 additions and 0 deletions
14
plugin/jquote.lua
Normal file
14
plugin/jquote.lua
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue