moved themes to themes dir

This commit is contained in:
2024-05-14 23:56:59 +02:00
parent 3b17c39a61
commit e6879ea135
13 changed files with 2 additions and 1 deletions

40
lua/themes/bamboo.lua Normal file
View File

@ -0,0 +1,40 @@
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,
lualine = {
transparent = true, -- lualine center bar transparency
},
code_style = {
comments = { italic = false },
conditionals = { italic = false },
keywords = {},
functions = {},
namespaces = { italic = false },
parameters = { italic = false },
strings = {},
variables = {},
},
highlights = {
['@lsp.type.comment'] = { link = '@comment', default = true },
['@comment'] = { fg = colors.vulgaris.light_grey, default = true },
['@lsp.type.parameter'] = { fg = colors.vulgaris.red },
['@lsp.mod.readonly'] = { fmt = 'bold', fg = 'NONE' },
['@lsp.typemod.parameter.readonly'] = { fmt = 'bold', fg = 'NONE' },
['@lsp.typemod.method.defaultLibrary.cpp'] = { fg = 'NONE' },
['@function.builtin'] = { fg = 'NONE' },
['LspReferenceRead'] = { bg = colors.vulgaris.green, fg = colors.vulgaris.bg1, fmt = 'nocombine' },
['LspReferenceWrite'] = { bg = colors.vulgaris.red, fg = colors.vulgaris.bg1, fmt = 'nocombine' },
['LspReferenceText'] = { bg = colors.vulgaris.cyan, fg = colors.vulgaris.bg1, fmt = 'nocombine' },
['Delimiter'] = { fg = colors.vulgaris.fg },
},
}
require('bamboo').load()
end,
enabled = true
}