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

https://github.com/hendriknielaender/stardust.nvim

🌠 A clean, dark Neovim theme
https://github.com/hendriknielaender/stardust.nvim

colorscheme lua neovim neovim-colorscheme neovim-plugin theme vim

Last synced: 5 months ago
JSON representation

🌠 A clean, dark Neovim theme

Awesome Lists containing this project

README

          


stardust.nvim logo


stardust.nvim



[![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/hendriknielaender/stardust.nvim/blob/HEAD/LICENSE)
![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/hendriknielaender/stardust.nvim)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/hendriknielaender/stardust.nvim/blob/HEAD/CONTRIBUTING.md)

## Theme

![image](stardust.png)

### Color palette

color palette

# Prerequisites

Neovim 0.8.0+

# Installing

## Using `packer`

```lua
use { "hendriknielaender/stardust.nvim" }
```

## Using `lazy.nvim`

```lua
{ "hendriknielaender/stardust.nvim", priority = 1000 , config = true, opts = ...}
```

# Basic Usage

Inside `init.vim`

```vim
set background=dark " or light if you want light mode
colorscheme stardust
```

Inside `init.lua`

```lua
vim.o.background = "dark" -- or "light" for light mode
vim.cmd([[colorscheme stardust]])
```