1
Fork 0

feat: bluetooth, better keybinds for vim and direnv?

This commit is contained in:
Matei Adriel 2022-04-05 20:42:32 +03:00
parent 5c93d9dbed
commit 79b65f3640
14 changed files with 129 additions and 31 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -35,8 +35,8 @@ function M.setup()
arpeggio.chord("inv", "mo", '<Plug>MarkersJumpOutside')
for key, brackets in pairs(extraBrackets) do
for _, v in ipairs(brackets) do
A.augroup('custom-brackets' .. key, function()
A.augroup('custom-brackets' .. key, function()
for _, v in ipairs(brackets) do
local action = M.createBracketCommand(v[1], v[2], 0, v[3] or "")
local glob = '*.' .. key
@ -46,8 +46,8 @@ function M.setup()
end
A.autocmd('BufEnter', glob, action)
end)
end
end
end)
end
end