Skip to content

ASmithOWL/synthdruze.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Synthdruze.nvim

Install

Lazy

Simplest possible way:

{
    "asmithowl/synthdruze.nvim",
}
-- run :colorscheme synthdruze or synthdruze-transparent when feeling like it

If you would like to run this as your main colorscheme, follow lazy.nvim instructions:

{
    "asmithowl/synthdruze.nvim",
    lazy = false, -- make sure we load this during startup if it is your main colorscheme
    priority = 1000,
    config = function()
        vim.cmd.colorscheme("synthdruze")
        -- transparent version
        -- vim.cmd.colorscheme("synthdruze-transparent")
    end
}

Config

If something stabs you in the eye, you can use setup with options and modify colors and groups.

{
    "asmithowl/synthdruze.nvim",
    lazy = false, -- make sure we load this during startup if it is your main colorscheme
    priority = 1000,
    config = function()
        local synthdruze = require("synthdruze")
        synthdruze.setup({
            transparent = false,
            overrides = {
                -- override any group
                Identifier = { fg = "#f22f52" },
            },
            palette = {
                -- override palette colors, take a peek at synthdruze/palette.lua
                bg0 = "#040404",
            },
        })
        synthdruze.load()
    end,
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages