Rose Pine Neovim Versions Save

Soho vibes for Neovim

v3.0.1

3 months ago

What's Changed

Full Changelog: https://github.com/rose-pine/neovim/compare/v3.0.0...v3.0.1

v3.0.0

3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/rose-pine/neovim/compare/v2.0.0...v3.0.0

v2.0.0

4 months ago

Changelog

What's new

  • Add extend_background_behind_borders
  • Add styles.bold with alternative styling when disabled
  • Add before_highlight hook to allow changing palette values and behaviours
  • Highlight diagnostic virtual text background with glow
  • Highlight StatusLineTerm & StatusLineTermNC, disable via enable.terminal = false
  • Increase contrast of search and other temporary visuals

Features

extend_background_behind_borders

Extend float backgrounds behind borders. Results vary depending on your border characters.

{
    extend_background_behind_borders = true
}

styles.transparency

Enable a unique experience focused around transparent terminals, avoiding large backgrounds and differentiating selections with foreground colours when possible.

{
    styles = {
        transparency = true
    }
}

before_highlight

{
    before_highlight = function(group, highlight, palette)
        -- Disable all undercurls
        if highlight.undercurl then
            highlight.undercurl = false
        end

        -- Change palette colour
        if highlight.fg == palette.pine then
            highlight.fg = palette.foam
        end

        -- Change palette colour for dark variants
        if vim.o.background == "dark" then
            if highlight.fg == palette.pine then
                highlight.fg = "#3e8fb0"
            end
    end,
}

Breaking changes

[!WARNING] Removed or renamed options should continue to work via internal migrations but backwards compatibility is not tested and may break at any time.

- dim_nc_background = true,
+ dim_inactive_windows = true,

- disable_background = true,
- disable_float_background = true,
+ styles.transparency = true

- disable_italics = true,
+ styles.italic = false,

- groups = {
-   background = "...",
-   comment = "...",
-   punctuation = "...",
- },
+ highlight_groups = {
+   Normal = { bg = "..." },
+   Comment = { fg = "..." },
+   ["@punctuation"] = { fg = "..." },
+ }

v1.2.2

4 months ago

Pin to this tag if you run into trouble with the v2 release. Please report any bugs or voice your feedback in a discussion. Thanks!

v2.0.0-next.1

5 months ago

Changelog

What's new

  • Add extend_background_behind_borders
  • Add styles.bold with alternative styling when disabled
  • Add before_highlight hook to allow changing palette values and behaviours
  • Highlight diagnostic virtual text background with glow
  • Highlight StatusLineTerm & StatusLineTermNC, disable via enable.terminal = false
  • Increase contrast of search and other temporary visuals

Features

extend_background_behind_borders

Extend float backgrounds behind borders. Results vary depending on your border characters.

{
    extend_background_behind_borders = true
}

styles.transparency

Enable a unique experience focused around transparent terminals, avoiding large backgrounds and differentiating selections with foreground colours when possible.

{
    styles = {
        transparency = true
    }
}

before_highlight

{
    before_highlight = function(group, highlight, palette)
        -- Disable all undercurls
        if highlight.undercurl then
            highlight.undercurl = false
        end

        -- Change palette colour
        if highlight.fg == palette.pine then
            highlight.fg = palette.foam
        end

        -- Change palette colour for dark variants
        if vim.o.background == "dark" then
            if highlight.fg == palette.pine then
                highlight.fg = "#3e8fb0"
            end
    end,
}

Breaking changes

[!WARNING] Removed or renamed options should continue to work via internal migrations but backwards compatibility is not tested and may break at any time.

- dim_nc_background = true,
+ dim_inactive_windows = true,

- disable_background = true,
- disable_float_background = true,
+ styles.transparency = true

- disable_italics = true,
+ styles.italic = false,

- groups = {
-   background = "...",
-   comment = "...",
-   punctuation = "...",
- },
+ highlight_groups = {
+   Normal = { bg = "..." },
+   Comment = { fg = "..." },
+   ["@punctuation"] = { fg = "..." },
+ }

v1.2.1

5 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/rose-pine/neovim/compare/v1.2.0...v1.2.1

v1.2.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/rose-pine/neovim/compare/v1.1.0...v1.2.0

v1.1.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/rose-pine/neovim/compare/v1.0.1...v1.0.2

v1.0.1

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/rose-pine/neovim/compare/v1.0.0...v1.1.0

v1.0.0

2 years ago

Breaking changes

Moved to lua configuration

require('rose-pine').setup({
	...
})
  • Renamed vim.g.rose_pine_bold_vertical_split_linebold_vert_split
  • Renamed vim.g.rose_pine_variantdark_variant
    • Note: Variant now respects vim.o.background, using dawn when light and dark_variant when dark
  • Renamed vim.g.rose_pine_inactive_backgrounddim_nc_background
  • Renamed vim.g.rose_pine_disable_backgrounddisable_background
  • Renamed vim.g.rose_pine_disable_float_backgrounddisable_float_background
  • Renamed vim.g.rose_pine_disable_italicsdisable_italics
  • Renamed vim.g.rose_pine_colorsgroups

What's new

  • Variant will match vim.o.background
  • Palette names can be used within setup
    • Eg. comment = 'iris'

Full Changelog: https://github.com/rose-pine/neovim/compare/v0.5.1...v1.0.0