task: Improve colors

This commit is contained in:
Viorel Binciu 2025-05-13 13:39:02 +03:00
parent d7480503c6
commit 2f8281c34d
No known key found for this signature in database
GPG key ID: AC875EA6A34E7770
2 changed files with 67 additions and 0 deletions

28
lua/plugins/colors.lua Normal file
View file

@ -0,0 +1,28 @@
--- Plugin for CSS Colors
return {
{ "brenoprata10/nvim-highlight-colors" },
{
"NvChad/nvim-colorizer.lua",
opts = {
css = true,
css_fn = true,
hsl_fn = true,
tailwind = true,
},
},
{
"tomasiser/vim-code-dark",
config = function()
vim.g.codedark_transparent = 1
vim.g.codedark_italics = 1
vim.g.codedark_modern = 1
end,
},
{
"ray-x/aurora",
config = function()
vim.g.aurora_italic = 1
vim.g.aurora_transparent = 1
end,
},
}

View file

@ -14,6 +14,45 @@ return {
hl.LineNr = { bg = "none", fg = "#999999" }
hl.CursorLineNr = { fg = "#ffffff" }
end,
opts = {
integrations = {
aerial = true,
alpha = true,
cmp = true,
dashboard = true,
flash = true,
grug_far = true,
gitsigns = true,
headlines = true,
illuminate = true,
indent_blankline = { enabled = true },
leap = true,
lsp_trouble = true,
mason = true,
markdown = true,
mini = true,
native_lsp = {
enabled = true,
underlines = {
errors = { "undercurl" },
hints = { "undercurl" },
warnings = { "undercurl" },
information = { "undercurl" },
},
},
navic = { enabled = true, custom_bg = "lualine" },
neotest = true,
neotree = true,
noice = true,
notify = true,
semantic_tokens = true,
telescope = true,
treesitter = true,
treesitter_context = true,
which_key = true,
},
transparent_background = true,
},
},
},
{