vague2k / huez.nvim

All things color related. All Lua.
MIT License
102 stars 3 forks source link
neovim neovim-colorscheme neovim-config neovim-plugin neovim-theme

huez.nvim

This demo shows the persistent, registry/ensure installed and favorites features

https://github.com/vague2k/huez.nvim/assets/121782036/98cdbc8d-9fef-4238-a386-1dab798f41bc

Read the wiki!

If you'd like more indepth information, or confused about something, see the Huez wiki! If you're still having an problem, submit an issue!

Features

Requires

lazy.nvim if you plan on using the management aspect. very much still a WIP

telescope.nvim

Installation

-- Lazy
{
    "vague2k/huez.nvim",
    -- if you want registry related features, uncomment this
    -- import = "huez-manager.import"
    branch = "stable",
    event = "UIEnter",
    config = function()
        require("huez").setup({})
    end,
}

Help

To get help use :h huez.txt

Configuration

Huez comes with the following defaults

{
  path = vim.fs.normalize(vim.fn.stdpath("data") --[[@as string]]) .. "/huez",
  fallback = "default",
  suppress_messages = true,
  exclude = { "desert", "evening", "industry", "koehler", "morning", "murphy", "pablo", "peachpuff", "ron", "shine", "slate", "torte", "zellner", "blue", "darkblue", "delek", "quiet", "elflord", "habamax", "lunaperche", "zaibatsu", "wildcharm", "sorbet", "vim", },
  picker = {
    themes = {
      layout = "right",
      opts = {},
    },
    favorites = {
      layout = "right",
      opts = {},
    },
    live = {
      layout = "right",
      opts = {},
    },
    ensured = {
      layout = "right",
      opts = {},
    },
  },
}

License

MIT