https://github.com/bjarneo/snow.nvim
Snow neovim color scheme
https://github.com/bjarneo/snow.nvim
neovim neovim-plugin neovim-theme neovim-theme-light neovim-theme-lua
Last synced: 10 months ago
JSON representation
Snow neovim color scheme
- Host: GitHub
- URL: https://github.com/bjarneo/snow.nvim
- Owner: bjarneo
- Created: 2025-07-26T15:56:04.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-26T16:47:42.000Z (11 months ago)
- Last Synced: 2025-08-11T05:49:53.451Z (10 months ago)
- Topics: neovim, neovim-plugin, neovim-theme, neovim-theme-light, neovim-theme-lua
- Language: Lua
- Homepage:
- Size: 801 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Snow
A simple, elegant, and light theme for Neovim.
> A whisper soft, a silent fall,
> Of crystals drifting, heeding winter's call.
> A silver blanket, on the dark earth spread,
> A memory of the green life fled.
> This is the snow, the soft and white,
> The quiet dream of a frozen night.
## Installation
Install with your favorite plugin manager.
### lazy.nvim
Add the following to your `lazy.nvim` configuration:
```lua
{
"bjarneo/snow.nvim",
priority = 1000,
config = function()
vim.cmd([[colorscheme snow]])
end,
}
```
## Usage
To use the theme, add the following to your `init.lua`:
```lua
vim.cmd.colorscheme "snow"
```