27 lines
661 B
Lua
27 lines
661 B
Lua
return {
|
|
-- 1. Add the vscode.nvim plugin
|
|
{
|
|
"Mofiqul/vscode.nvim",
|
|
lazy = false, -- Load this plugin during startup
|
|
priority = 1000, -- Ensure it loads before other plugins
|
|
config = function()
|
|
-- Optional: Configure the theme style
|
|
require("vscode").setup({
|
|
style = "dark", -- Options: 'dark' or 'light'
|
|
transparent = false, -- Set to true for a transparent background
|
|
italic_comments = true,
|
|
})
|
|
-- Load the colorscheme immediately
|
|
require("vscode").load()
|
|
end,
|
|
},
|
|
|
|
-- 2. Tell LazyVim to use it
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "vscode",
|
|
},
|
|
},
|
|
}
|