Added base folke setup

This commit is contained in:
2022-10-09 22:40:29 +02:00
parent 1afab44385
commit efc511cbcf
32 changed files with 2292 additions and 60 deletions

12
lua/plugins/autopairs.lua Normal file
View File

@@ -0,0 +1,12 @@
return {
module = "nvim-autopairs",
config = function()
local npairs = require("nvim-autopairs")
npairs.setup({
check_ts = true,
ts_config = {
lua = { "string", "comment" },
},
})
end,
}