vague2k / huez.nvim

Theme picker/manager, Using the powers of Telescope for the frontend and Lazy.nvim for the backend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

huez.nvim

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

huez_demo.mp4

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

  • πŸ₯± Uses lazy.nvim as a backend for handling registry operations.
  • πŸ”­ Uses telescope.nvim.
  • πŸ’― Huge registry with 400+ colorschemes, 80+ packages
  • πŸŒ„ Preview installed colorschemes.
  • πŸ›οΈ Preview registry colorschemes live without affecting startup times!
  • πŸ’Ύ Persistent colorschemes selection through Neovim sessions.
  • 🌟 Mark themes as favorites!
  • πŸ”Œ Automatic handling of installed colorschemes through the registry!
  • πŸ”— Customize theme configurations as per your liking!

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,
  theme_config_module = nil,
  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

About

Theme picker/manager, Using the powers of Telescope for the frontend and Lazy.nvim for the backend

License:MIT License


Languages

Language:Lua 99.6%Language:Makefile 0.4%