20 lines
554 B
Lua
20 lines
554 B
Lua
return {
|
|
'ribru17/bamboo.nvim',
|
|
lazy = true,
|
|
priority = 1000,
|
|
config = function()
|
|
local colors = require('bamboo.palette')
|
|
require('bamboo').setup {
|
|
dim_inactive = true, -- Dim inactive windows/buffers
|
|
cmp_itemkind_reverse = true,
|
|
highlights = {
|
|
['@lsp.type.parameter'] = { fg = colors.vulgaris.red },
|
|
['@lsp.mod.readonly'] = { fmt = 'bold', fg = 'NONE' },
|
|
['@lsp.typemod.parameter.readonly'] = { fmt = 'bold', fg = 'NONE' },
|
|
},
|
|
}
|
|
require('bamboo').load()
|
|
end,
|
|
enabled = true
|
|
}
|