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
- Host: GitHub
- URL: https://github.com/hendriknielaender/stardust.nvim
- Owner: hendriknielaender
- License: mit
- Created: 2024-06-20T10:59:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T23:16:15.000Z (about 1 year ago)
- Last Synced: 2025-03-15T15:40:32.530Z (about 1 year ago)
- Topics: colorscheme, lua, neovim, neovim-colorscheme, neovim-plugin, theme, vim
- Language: Lua
- Homepage:
- Size: 523 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
stardust.nvim
[](https://github.com/hendriknielaender/stardust.nvim/blob/HEAD/LICENSE)

[](https://github.com/hendriknielaender/stardust.nvim/blob/HEAD/CONTRIBUTING.md)
## Theme

### 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]])
```