mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
task: Improve colors
This commit is contained in:
parent
d7480503c6
commit
2f8281c34d
2 changed files with 67 additions and 0 deletions
28
lua/plugins/colors.lua
Normal file
28
lua/plugins/colors.lua
Normal 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,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
@ -14,6 +14,45 @@ return {
|
||||||
hl.LineNr = { bg = "none", fg = "#999999" }
|
hl.LineNr = { bg = "none", fg = "#999999" }
|
||||||
hl.CursorLineNr = { fg = "#ffffff" }
|
hl.CursorLineNr = { fg = "#ffffff" }
|
||||||
end,
|
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,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue