Skip to content

SignColumn issue with tokyonight #712

Closed
@gegoune

Description

@gegoune

how is that possible ? if dimming is active, it'll just show as normal which should not affect the UI. Same for signcolumn.

Could you make an issue with a small config with custom colors to demonstrate the behavior maybe ? I cannot see any of this with my colorscheme

Originally posted by @kyazdani42 in #705 (comment)

Minimal repro:

vim.cmd [[set runtimepath=$VIMRUNTIME]]
vim.cmd [[set packpath=/tmp/nvim/site]]
local package_root = '/tmp/nvim/site/pack'
local install_path = package_root .. '/packer/start/packer.nvim'
local function load_plugins()
  require('packer').startup {
    {
      'wbthomason/packer.nvim',
      {
        'kyazdani42/nvim-tree.lua',
        config = function()
          require('nvim-tree').setup {}
        end,
      },
      'folke/tokyonight.nvim',
    },
    config = {
      package_root = package_root,
      compile_path = install_path .. '/plugin/packer_compiled.lua',
      display = { non_interactive = true },
    },
  }
end
if vim.fn.isdirectory(install_path) == 0 then
  print 'Installing neogit and dependencies.'
  vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path }
end
load_plugins()
require('packer').sync()
vim.g.tokyonight_style = 'night'
vim.cmd [[colorscheme tokyonight]]

When active it looks like:
Screenshot 2021-10-10 at 12 18 31

(and dims when inactive.)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions