Skip to content

mdonaka/color-manager.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub license Neovim

日本語READMEはこちら

color-manager.nvim

color-manager.nvim is a plugin for managing Color Schemes in Vim. It allows you to easily select, install, and uninstall color schemes.

Demo GIF

Installation

lazy.nvim

{
  "mdonaka/color-manager.nvim",
  dependencies = {
    "rafi/awesome-vim-colorschemes",
    {
      "ibhagwan/fzf-lua",
      dependencies = {
        "nvim-tree/nvim-web-devicons",
      },
    }
  },
}

vim-plug

Plug 'mdonaka/color-manager.nvim'
Plug 'rafi/awesome-vim-colorschemes'
Plug 'ibhagwan/fzf-lua'
Plug 'nvim-tree/nvim-web-devicons'

Commands

Command Description
:ColorManager Opens the color scheme selection UI and switches a scheme
:ColorManagerInstall Opens the color scheme selection UI and installs a color scheme
:ColorManagerUninstall Opens the color scheme selection UI and uninstalls a color scheme

Configuration

Option Type Default Description
colors_dir string vim.fn.stdpath("config") .. "/colors/" Directory to store color schemes
randomize_colorscheme_on_startup boolean false Apply a random color scheme on startup

lazy.nvim

{
  "mdonaka/color-manager.nvim",
  dependencies = { ... },
  opts = {
    colors_dir = {string},
    randomize_colorscheme_on_startup = {boolean},
  }
}

vim-plug

lua << EOF
require("color_manager").setup({
  colors_dir = {string},
  randomize_colorscheme_on_startup = {boolean},
})
EOF

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages