MyGit

v2.0.0

rose-pine/neovim

版本发布时间: 2024-01-08 03:42:41

rose-pine/neovim最新发布版本:v3.0.1(2024-01-27 11:44:32)

Changelog

What's new

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 = "..." },
+ }

相关地址:原始地址 下载(tar) 下载(zip)

查看:2024-01-08发行的版本