46 lines
1.0 KiB
Lua
46 lines
1.0 KiB
Lua
return {
|
|
{
|
|
"Mofiqul/vscode.nvim",
|
|
priority = 1000,
|
|
opts = {
|
|
transparent = true,
|
|
italic_comments = true,
|
|
color_overrides = {
|
|
vscLineNumber = "#D7BA7D",
|
|
vscFoldBackground = "#202d39",
|
|
-- Syntax colors
|
|
vscGray = "#808080",
|
|
vscViolet = "#646695",
|
|
vscBlue = "#569CD6",
|
|
vscAccentBlue = "#4FC1FE",
|
|
vscDarkBlue = "#223E55",
|
|
vscMediumBlue = "#18a2fe",
|
|
vscLightBlue = "#9CDCFE",
|
|
vscGreen = "#808080",
|
|
vscBlueGreen = "#4EC9B0",
|
|
vscLightGreen = "#B5CEA8",
|
|
vscRed = "#F44747",
|
|
vscOrange = "#CE9178",
|
|
vscLightRed = "#D16969",
|
|
vscYellowOrange = "#D7BA7D",
|
|
vscYellow = "#DCDCAA",
|
|
vscDarkYellow = "#FFA602",
|
|
vscPink = "#C586C0",
|
|
},
|
|
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 = "#646695",
|
|
bg = "#B5CEA8",
|
|
bold = false,
|
|
},
|
|
},
|
|
},
|
|
config = function(plugin, opts)
|
|
require("vscode").setup(opts)
|
|
require("vscode").load()
|
|
end,
|
|
},
|
|
}
|