Skip to content

Latest commit

 

History

History
73 lines (57 loc) · 2.44 KB

README.md

File metadata and controls

73 lines (57 loc) · 2.44 KB

distinct-nvim

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.

Preview

cpp

Usage

Lazy

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
}

Lualine

require("lualine").setup({
    options = {
        -- ...
        theme = 'distinct'
        -- ...
    },
})

Barbecue

require("barbecue").setup({
    -- ...
    theme = 'distinct'
    -- ...
})

Supported plugins