Refactoring

- Added macos
This commit is contained in:
foozzi 2024-01-14 23:29:33 -05:00
parent 03a7616e8c
commit 2c1ccaffd1
47 changed files with 76 additions and 33 deletions

View file

@ -0,0 +1,17 @@
local config = function()
local Rule = require("nvim-autopairs.rule")
local conds = require("nvim-autopairs.conds")
local npairs = require("nvim-autopairs")
require("nvim-autopairs").setup({})
npairs.add_rule(Rule('"""', '"""', "python"):with_pair(function()
return false
end))
end
return {
"windwp/nvim-autopairs",
event = "InsertEnter",
config = config, -- this is equalent to setup({}) function
}