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

Line numbers gutter has different formatting #212

Open
MartyMcFlyInTheSky opened this issue Sep 23, 2024 · 0 comments
Open

Line numbers gutter has different formatting #212

MartyMcFlyInTheSky opened this issue Sep 23, 2024 · 0 comments

Comments

@MartyMcFlyInTheSky
Copy link

MartyMcFlyInTheSky commented Sep 23, 2024

The line numbers gutter to the left has a different highlighting for me in vscode.nvim vs original vscode. Compare the screenshots:

nvim.vscode:
image

Above the current line number is not highlighted in any way, while in vscode it is:

vscode:
image

Is this a misconfiguration of sorts or is that actually an issue? This is my lazy.nvim configuration:

return {
   'Mofiqul/vscode.nvim',

   -- optionally, override the default options:
    config = function()
	      local c = require('vscode.colors').get_colors()
	      require('vscode').setup({
		-- Alternatively set style in setup
		-- style = 'light'

		-- Enable transparent background
		transparent = true,

		-- Enable italic comment
		italic_comments = true,

		-- Disable nvim-tree background color
		disable_nvimtree_bg = true,

		-- Override highlight groups (see ./lua/vscode/theme.lua)
		group_overrides = {
		    -- this supports the same val table as vim.api.nvim_set_hl
		    -- use colors from this colorscheme by requiring vscode.colors!
		   Cursor = { fg=c.vscDarkBlue, bg=c.vscLightGreen, bold=true },
		}
	    })
	    require('vscode').load()
   end,
   -- If colorscheme plugins are lazy loaded need to be higher prioritized (https://lazy.folke.io/spec/lazy_loading)
   lazy = false,
   priority=1000,
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant