Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regression: signcolumn highlight in v1.3.10 #55

Open
savchenko opened this issue Dec 29, 2024 · 0 comments
Open

Regression: signcolumn highlight in v1.3.10 #55

savchenko opened this issue Dec 29, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@savchenko
Copy link

Description

v1.3.9

image

v1.3.10

image

Neovim version

NVIM v0.10.2                                                                                                                                                                                        
Build type: Release                                                                                                                                                                                 
LuaJIT 2.1.1713484068

Terminal and multiplexer

foot version: 1.19.0 +pgo +ime +graphemes +toplevel-icon -assertions

Modus themes version

v1.3.9

Steps to reproduce

  1. Update to v1.3.10
  2. Observe inferior highlights

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "miikanissi/modus-themes.nvim",
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("modus")
-- add anything else here
@savchenko savchenko added the bug Something isn't working label Dec 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant