https://github.com/styzex/sonomin.nvim
Sonomin is a dark colorscheme for Neovim, its a mix between Sonokai and Min
https://github.com/styzex/sonomin.nvim
neovim-colorscheme neovim-config neovim-configuration neovim-lua neovim-plugin neovim-theme
Last synced: 4 months ago
JSON representation
Sonomin is a dark colorscheme for Neovim, its a mix between Sonokai and Min
- Host: GitHub
- URL: https://github.com/styzex/sonomin.nvim
- Owner: Styzex
- Created: 2024-08-17T21:11:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-23T16:34:24.000Z (over 1 year ago)
- Last Synced: 2025-04-21T18:57:26.228Z (about 1 year ago)
- Topics: neovim-colorscheme, neovim-config, neovim-configuration, neovim-lua, neovim-plugin, neovim-theme
- Language: Lua
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎨 Sonomin
Sonomin is a dark colorscheme for Neovim, its a mix between [Sonokai](https://github.com/sainnhe/sonokai) and [Min](https://github.com/miguelsolorio/min-theme)
## 🌟 Features
- Dark theme optimized for readability
- Carefully selected colors for syntax highlighting
- Customized UI elements for a cohesive look
## 📦 Installation
### 📦 [packer.nvim](https://github.com/wbthomason/packer.nvim):
```lua
use {
'Styzex/Sonomin.nvim',
config = function()
require('sonomin').setup()
end
}
```
### 📦 [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
require('lazy').setup({
{
'Styzex/Sonomin.nvim',
lazy = false,
priority = 1000
}
})
```
### 📦 [vim-plug](https://github.com/junegunn/vim-plug):
```vim
Plug 'Styzex/Sonomin.nvim'
```
Thank you for using Sonomin!