1
0

add escape.nvim

This commit is contained in:
Rokas Puzonas 2023-07-12 21:21:27 +03:00
parent e4155b9fa4
commit bcc1335c3e
3 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,7 @@
local cmd = vim.cmd
table.unpack = unpack
-- Allow loading */init.lua files
package.path = "./?/init.lua;"..package.path

10
lua/config/escape.lua Normal file
View File

@ -0,0 +1,10 @@
return {
"m-gail/escape.nvim",
config = function()
local escape = require("escape").escape
require("legendary").keymaps{
{"<leader>e", escape, description="Escape quotes", mode={"v"}, opts={noremap=true,silent = true}}
}
end
}

View File

@ -34,6 +34,7 @@ return function(use)
use_config "git-conflict"
use_config "doxygen-tk"
use_config "navbuddy"
use_config "escape"
-- use_config "ufo"
use {