Skip to content

Releases: maxmx03/solarized.nvim

v3.6.0

31 Oct 12:54
c0dfe1c
Compare
Choose a tag to compare

3.6.0 (2024-10-31)

Features

v3.5.0

02 Oct 19:53
f85f000
Compare
Choose a tag to compare

3.5.0 (2024-10-02)

Features

Bug Fixes

  • markup italic (6d11c34)
  • normalfloat's transparent config (e9fd95b)
  • prevent error when user pass a nil value to setup (3ae785b)

v3.4.0

11 Sep 15:39
a6383a3
Compare
Choose a tag to compare

3.4.0 (2024-09-06)

Features

  • add/remove css, scss queries (b97faa8)
  • cursorlinenr colors (b4ea862)
  • error_lens config (7cd9784)
  • variants: editor looks different on each variant (ed090c9)

Bug Fixes

  • solarized-light lsp property and parameter (c87752f)

v3.3.0

30 Aug 18:16
151aabd
Compare
Choose a tag to compare

3.3.0 (2024-08-30)

Features

  • solarized theme based on seasons (650dbd5)

Bug Fixes

  • docs: fix code example under Config Highlighs in README (8ca7c63)

v3.2.0

29 Aug 19:45
2b428ef
Compare
Choose a tag to compare

3.2.0 (2024-08-29)

Features

Bug Fixes

  • solarized-dark diagnostics config (e41b3cf)
  • solarized-light lazynormal bg (8759a70)

v3.1.1

27 Aug 15:55
533a606
Compare
Choose a tag to compare

3.1.1 (2024-08-27)

Bug Fixes

  • some plugins was not enabled like ale,coc,leap (d364127)

v3.1.0

27 Aug 15:48
bb8600e
Compare
Choose a tag to compare

3.1.0 (2024-08-27)

Features

BREAKING CHANGES

Configuration Overhaul
The configuration structure for the solarized theme has been significantly refactored in this release. If you are upgrading from a previous version, please update your configuration accordingly to avoid issues.

Key Changes:

  1. Transparency Settings:
  • Before: transparent = false (single boolean to enable or disable transparency)
  • After: Transparency is now configured through a table, allowing finer control over specific UI elements.
transparent = {
  enabled = false,    -- Global switch for transparency
  pmenu = true,       -- Popup menu transparency
  normal = true,      -- Main editor window transparency
  normalfloat = true, -- Floating window transparency
  neotree = true,     -- Neo-tree transparency
  nvimtree = true,    -- Nvim-tree transparency
  whichkey = true,    -- Which-key transparency
  telescope = true,   -- Telescope transparency
  lazy = true,        -- Lazy plugin UI transparency
}
  1. New Callback Options:
  • Introduced on_highlights and on_colors callbacks, replacing the highlights and colors tables. These allow for dynamic customization:
on_highlights = nil,  -- Function for custom highlight overrides
on_colors = nil,      -- Function for custom color overrides
  1. Renamed and Consolidated Settings:

Before: Configuration options like enables and theme were used.
After: These have been refactored and renamed:
enables is now plugins, with plugin names standardized.
The theme option has been removed.

Bug Fixes

  • barbecue theme (fb1997b)
  • selenized and solarized extra colors (10eb62f)
  • selenized base02 and base04 (c84571d)

v3.0.0

13 May 14:23
b3a9765
Compare
Choose a tag to compare

3.0.0 (2024-05-13)

⚠ BREAKING CHANGES

  • palette: Removal of base04
    • Integrated Selenized color palette into the project.
  • The highlight and colors callbacks now accept only two parameters, colors and colorhelper table.

Features

  • .gitignore removed (058a75e)
  • Add support for nvim-notify in colorscheme (221eb6b)
  • Add support for packer.nvim in colorscheme (55cbf08)
  • barbecue (5ad821f)
  • extras highlight token (c389ad2)
  • github workflows, vusted, stylua (a630aa5)
  • highlights for todo.nvim (3d1e225)
  • hl for noice-progress (55506b1)
  • lazy (4443451)
  • lazy, packer hl groups (5f155d9)
  • neogit (8318f74)
  • neorg hl (b4dbaaa)
  • palette: Add support for Selenized color palette (3338aa4)
  • treesitter hl character.printf (9c0cc96)
  • utils.math removed, colors hsl func removed, improv darken,lighten (d618ab9)
  • vim-sneak (84bfe3b)
  • zen-mode (3465c6c)

Bug Fixes

  • base03 color (9567554)
  • check if neovim is nightly to load advanced hl (0963ad8)
  • color search,visual,telescope,winseparator (ce004ce)
  • colorcolumn, incsearch, floatborder (7b0181d)
  • Configuring highlight of type "variable" #69 (a630aa5)
  • indentblankline, whitespace, treesitter text hl (76de882)
  • inlay-hint (fe803f1)
  • invalid color (67ce0bb)
  • jsx tags, methods being italized, incsearch low contrast (888695f)
  • LspInlayHint foreground color on light mode (54a7b79)
  • neo editor winseparator (54430f0)
  • neovim - signcolumn bg (7357e0e)
  • solarized setup (595bd9a)
  • telescope selection (85ac187)
  • tests (058a75e)
  • treesitter parameter style was not being overridden by config (2f59f9d)
  • vscode_theme (b6cd0ff)

Code Refactoring

v2.3.0

28 Mar 15:04
b97f937
Compare
Choose a tag to compare

2.3.0 (2024-03-28)

Features

Bug Fixes

v2.2.0

28 Mar 14:50
d54aeda
Compare
Choose a tag to compare

2.2.0 (2024-03-28)

Features

  • github workflows, vusted, stylua (6a34504)

Bug Fixes