https://github.com/gmr458/vscode_modern_theme.nvim
VSCode Modern theme port for Neovim, Dark & Light versions
https://github.com/gmr458/vscode_modern_theme.nvim
colorscheme lua neovim theme vscode
Last synced: 8 days ago
JSON representation
VSCode Modern theme port for Neovim, Dark & Light versions
- Host: GitHub
- URL: https://github.com/gmr458/vscode_modern_theme.nvim
- Owner: gmr458
- Created: 2023-04-16T05:34:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-06T02:51:54.000Z (6 months ago)
- Last Synced: 2025-08-06T04:21:31.964Z (6 months ago)
- Topics: colorscheme, lua, neovim, theme, vscode
- Language: Lua
- Homepage:
- Size: 471 KB
- Stars: 53
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VSCode Modern theme for Neovim, Dark & Light versions

## Float terminal

## Telescope find files

## Telescope live grep

## Telescope LSP references

## Telescope LSP implementations

# Installation
[lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{
"gmr458/vscode_modern_theme.nvim",
lazy = false,
priority = 1000,
config = function()
require("vscode_modern").setup({
cursorline = true,
transparent_background = false,
nvim_tree_darker = true,
})
vim.cmd.colorscheme("vscode_modern")
end,
}
```