some variety on macbook

This commit is contained in:
Iwaniuk Krzysztof 2024-07-01 01:36:56 +02:00
parent 1bbc50e3a9
commit 63e44654f1
19 changed files with 229 additions and 99 deletions

View file

@ -14,6 +14,14 @@ return {
gitsigns = true,
treesitter = true,
notify = true,
noice = true,
neogit = true,
lsp_saga = true,
native_lsp = {
enabled = true,
hints = { 'italic' },
},
rainbow_delimiters = true,
mini = {
enabled = true,
},
@ -55,6 +63,8 @@ return {
},
},
config = function(_, opts)
require('ibl').setup(opts)
local hooks = require 'ibl.hooks'
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
for name, value in pairs(vim.g.rainbow_delimiters) do
@ -62,18 +72,6 @@ return {
end
end)
opts.scope = {
highlight = {
'RainbowDelimiterRed',
'RainbowDelimiterYellow',
'RainbowDelimiterBlue',
'RainbowDelimiterOrange',
'RainbowDelimiterGreen',
'RainbowDelimiterViolet',
'RainbowDelimiterCyan',
},
}
-- require('ibl').setup(opts)
hooks.register(hooks.type.SCOPE_HIGHLIGHT, hooks.builtin.scope_highlight_from_extmark)
end,
},