https://github.com/shadowy-pycoder/vscode-gruber.nvim
https://github.com/shadowy-pycoder/vscode-gruber.nvim
neovim-colors neovim-colorscheme vim
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shadowy-pycoder/vscode-gruber.nvim
- Owner: shadowy-pycoder
- License: mit
- Created: 2025-03-03T05:13:04.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-03T17:55:09.000Z (3 months ago)
- Last Synced: 2025-03-03T18:45:08.580Z (3 months ago)
- Topics: neovim-colors, neovim-colorscheme, vim
- Language: Lua
- Homepage:
- Size: 243 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VsCode-Gruber.nvim
An attempt to combine the VSCode Dark Modern theme with Gruber Darker theme
## Installation
### [vim-plug](https://github.com/junegunn/vim-plug)
```vim
Plug 'rktjmp/lush.nvim'
Plug 'shadowy-pycoder/vscode-gruber.nvim', { 'branch': 'main' }
```### [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
return {
'shadowy-pycoder/vscode-gruber.nvim',
dependencies = { 'rktjmp/lush.nvim' },
name = 'vscode-gruber',
branch = 'main',
priority = 1000,
config = function()
vim.cmd('colorscheme vscode-gruber')
end,
}
```