From 2f8281c34d1fe2a7d3612b879ababea11d4dc8b1 Mon Sep 17 00:00:00 2001 From: Viorel Binciu Date: Tue, 13 May 2025 13:39:02 +0300 Subject: [PATCH] task: Improve colors --- lua/plugins/colors.lua | 28 ++++++++++++++++++++++++++ lua/plugins/colorscheme.lua | 39 +++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 lua/plugins/colors.lua diff --git a/lua/plugins/colors.lua b/lua/plugins/colors.lua new file mode 100644 index 0000000..d6e5b89 --- /dev/null +++ b/lua/plugins/colors.lua @@ -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, + }, +} diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index 36bab7b..bc916cf 100644 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -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, + }, }, }, {