https://github.com/emanuel2718/vanta.nvim
Neovim colorscheme inspired by Vantablack, Cmder and MSDOS
https://github.com/emanuel2718/vanta.nvim
colorscheme lua neovim neovim-colorscheme vim vim-colorscheme
Last synced: 3 months ago
JSON representation
Neovim colorscheme inspired by Vantablack, Cmder and MSDOS
- Host: GitHub
- URL: https://github.com/emanuel2718/vanta.nvim
- Owner: emanuel2718
- License: mit
- Created: 2024-12-28T18:16:41.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-21T23:06:47.000Z (10 months ago)
- Last Synced: 2025-06-22T00:18:47.108Z (10 months ago)
- Topics: colorscheme, lua, neovim, neovim-colorscheme, vim, vim-colorscheme
- Language: Lua
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
vanta.nvim
Install
·
Usage
·
Configuration
·
Looks

# Prerequisites
Neovim 0.8.0+
# Install
> [!Warning]
> This is nowhere near completion. Expect broken colors.
[lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
{ "emanuel2718/vanta.nvim", priority = 1000, config = true, opts = ... }
```
# Usage
```lua
-- neovim
vim.cmd.colorscheme("vanta")
```
# Configuration (Defaults)
```lua
require("vanta").setup({
-- Enable terminal colors (recommended)
terminal_colors = true,
-- Style options
undercurl = false, -- Use undercurls for diagnostics and spellcheck
underline = false, -- Use underlines for references and matching words
bold = true, -- Use bold for headings, keywords, and UI elements
-- Window appearance
dim_inactive = false, -- Dim text in inactive windows
transparent = false, -- Use transparent backgrounds
-- Italic options
italic = {
strings = false, -- Italicize strings
comments = true, -- Italicize comments
operators = false, -- Italicize operators
emphasis = false, -- Italicize emphasized text
folds = true, -- Italicize fold markers
},
})
```