Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bartekjaszczak/finale-nvim
A balanced dark Neovim theme, blending vivid and pastel colors for a comfortable, high-contrast experience.
https://github.com/bartekjaszczak/finale-nvim
colorscheme colourscheme neovim neovim-colorscheme neovim-plugin nvim semantic-highlighting treesitter
Last synced: 2 days ago
JSON representation
A balanced dark Neovim theme, blending vivid and pastel colors for a comfortable, high-contrast experience.
- Host: GitHub
- URL: https://github.com/bartekjaszczak/finale-nvim
- Owner: bartekjaszczak
- License: mit
- Created: 2024-10-30T15:54:10.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-28T19:49:23.000Z (24 days ago)
- Last Synced: 2024-11-28T20:32:42.524Z (24 days ago)
- Topics: colorscheme, colourscheme, neovim, neovim-colorscheme, neovim-plugin, nvim, semantic-highlighting, treesitter
- Language: Lua
- Homepage:
- Size: 397 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# finale-nvim
**finale** is a refined dark theme for Neovim, balancing vivid and pastel tones with a focus on readability and comfort. Designed for contrast, finale offers a polished aesthetic that builds on my previous themes.
## Features
- 10 carefully selected accent colours, along with 10 pastel variations
- Supports **treesitter** highlighting as well as **semantic tokens**
- Supports some major plugins (feel free to open an issue if you'd like your plugin supported)
- Includes themes for **lualine** and **barbecue**## Usage
### Lazy
There are no settings to this theme, so there's no need to call `setup()`. Simply enable and activate the theme:
```lua
{
"https://gitlab.com/bartekjaszczak/finale-nvim",priority = 1000,
config = function()
-- Activate the theme
vim.cmd.colorscheme("finale")
end
}
```### Lualine
```lua
require("lualine").setup({
options = {
-- ...
theme = "finale"
-- ...
},
})
```### Barbecue
```lua
require("barbecue").setup({
-- ...
theme = "finale"
-- ...
})
```## Preview
![showcase](showcase/showcase.png?)
## FAQ
### Why is it called finale?
Because it's my 4th Neovim theme this year and I hope it'll be the last one. Forever.
### I'd like to adjust some colours to my liking, how can I do that?
Currently there's no settings available. If you feel like you could use colour overrides (or some other custom configuration), feel free to open an issue.