tokyonight.nvim icon indicating copy to clipboard operation
tokyonight.nvim copied to clipboard

fix: mini.statusline colors, cursorcolumn and signcolumn linking with cursorline and cursorlinenr

Open 231tr0n opened this issue 1 year ago • 1 comments

Changes for ministatusline and linking cursorcolumn and signcolumn to LineNr

on_highlights = function(highlights, colors)
        -- Ministatusline changes
        highlights.MiniStatuslineDevinfo = { fg = colors.fg_dark, bg = colors.fg_gutter }
	highlights.MiniStatuslineFileinfo = { fg = colors.fg_dark, bg = colors.fg_gutter }
	highlights.MiniStatuslineFilename = { fg = colors.fg_dark, bg = colors.bg_highlight }
        -- cursorcolumn and signcolumn linking to lineNr
	highlights.SignColumn = { link = "LineNr" }
	highlights.FoldColumn = { link = "LineNr" }
        highlights.CursorLineFold = { link = "CursorLineNr" }
        highlights.CursorLineSign = { link = "CursorLineNr" }
end

MiniStatusline

Without the Ministatusline changes the statusline looks something like this image With the changes of Ministatusline it looks something like this image

SignColumn and FoldColumn changes

Without the signcolumn and foldcolumn changes the column looks something like this image With the signcolumn and foldcolumn changes the column looks something like this image

231tr0n avatar Jun 23 '24 13:06 231tr0n

@folke, sorry for this ping and hope I am not being rude but I wanted to know if there was any chance of this PR getting merged since this fixes issues with sign and fold column highlighting and mini.statusline.

231tr0n avatar Jun 30 '24 13:06 231tr0n