format with stylua

This commit is contained in:
2024-06-06 23:56:11 +02:00
parent d57eca961d
commit ae5b5fd06b
57 changed files with 994 additions and 989 deletions

View File

@@ -21,7 +21,7 @@ return {
'RainbowCyan',
}
local hooks = require 'ibl.hooks'
local hooks = require('ibl.hooks')
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
@@ -35,12 +35,12 @@ return {
end)
vim.g.rainbow_delimiters = { highlight = highlight }
require('ibl').setup {
require('ibl').setup({
scope = {
highlight = highlight,
show_start = false
}
}
show_start = false,
},
})
hooks.register(hooks.type.SCOPE_HIGHLIGHT, hooks.builtin.scope_highlight_from_extmark)
end,