color-manager.nvim is a plugin for managing Color Schemes in Vim. It allows you to easily select, install, and uninstall color schemes.
{
"mdonaka/color-manager.nvim",
dependencies = {
"rafi/awesome-vim-colorschemes",
{
"ibhagwan/fzf-lua",
dependencies = {
"nvim-tree/nvim-web-devicons",
},
}
},
}Plug 'mdonaka/color-manager.nvim'
Plug 'rafi/awesome-vim-colorschemes'
Plug 'ibhagwan/fzf-lua'
Plug 'nvim-tree/nvim-web-devicons'| 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 |
| 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 |
{
"mdonaka/color-manager.nvim",
dependencies = { ... },
opts = {
colors_dir = {string},
randomize_colorscheme_on_startup = {boolean},
}
}lua << EOF
require("color_manager").setup({
colors_dir = {string},
randomize_colorscheme_on_startup = {boolean},
})
EOFMIT
