Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 400 Bytes

File metadata and controls

25 lines (18 loc) · 400 Bytes

fnpairs.nvim

A simple pairs plugin written in FP style using Lua.

Install

install with any plugin manager or built-in package.

no setup function is used, fnpairs will work after loaded.

using vim.g.fnpairs add new pairs list. below is default paris list.

{
    ['('] = ')',
    ['['] = ']',
    ['{'] = '}',
    ['"'] = '"',
    ["'"] = "'",
    ['`'] = '`',
}

License MIT