Distinct is neovim colour scheme with distinctive, vibrant colours. It is partially inspired by my previous theme - gruv-vsassist.nvim. Colour palette is based on Pol'and'Rock festival logo.
Distinct supports treesitter highlighting, as well as semantic token highlighting. It supports some major plugins, but not all of them (current list can be found at the end of README). Fell free to add or request support for other plugins. It's entirely written in lua, therefore it's not suitable for vim.
If you don't want to change any settings, setup()
needn't to be called. Defaults are presented below.
{
"https://gitlab.com/bartekjaszczak/distinct-nvim",
priority = 1000,
config = function()
require("distinct").setup({
doc_comments_different_color = true, -- Use different colour for documentation comments
})
vim.cmd [[colorscheme distinct]]
end
}
require("lualine").setup({
options = {
-- ...
theme = 'distinct'
-- ...
},
})
require("barbecue").setup({
-- ...
theme = 'distinct'
-- ...
})