You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The line numbers gutter to the left has a different highlighting for me in vscode.nvim vs original vscode. Compare the screenshots:
nvim.vscode:
Above the current line number is not highlighted in any way, while in vscode it is:
vscode:
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,
}
The text was updated successfully, but these errors were encountered:
The line numbers gutter to the left has a different highlighting for me in vscode.nvim vs original vscode. Compare the screenshots:
nvim.vscode:
Above the current line number is not highlighted in any way, while in vscode it is:
vscode:
Is this a misconfiguration of sorts or is that actually an issue? This is my lazy.nvim configuration:
The text was updated successfully, but these errors were encountered: