Closed
Description
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]]
(and dims when inactive.)
Metadata
Metadata
Assignees
Labels
No labels