chore: stylua formatting update (#261)

* addded stylua config file

* chore: formatted with stylua
This commit is contained in:
Galen Rowell
2021-08-16 17:49:09 +10:00
committed by GitHub
parent 4abf43aa99
commit 86903ab982
36 changed files with 1955 additions and 1987 deletions

View File

@@ -2,13 +2,11 @@ local present1, autopairs = pcall(require, "nvim-autopairs")
local present2, autopairs_completion = pcall(require, "nvim-autopairs.completion.compe")
if not (present1 or present2) then
return
return
end
autopairs.setup()
autopairs_completion.setup(
{
map_cr = true,
map_complete = true -- insert () func completion
}
)
autopairs_completion.setup {
map_cr = true,
map_complete = true, -- insert () func completion
}