An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          


vanta.nvim


Install
·
Usage
·
Configuration
·
Looks

Image

# 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
},
})
```