Light refactoring, move as many config = func uses into opts as

possible.
This commit is contained in:
Martin Larsson 2024-07-12 17:04:53 +02:00
parent 657f9cb7e1
commit 0a53678bb9
10 changed files with 119 additions and 140 deletions

View file

@ -1,12 +1,10 @@
return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
config = function()
require("ibl").setup({
debounce = 100,
scope = {
enabled = false
},
})
end
opts = {
debounce = 100,
scope = {
enabled = false
},
}
}