Install colorschemes into your NeoVim configuration from itself.
This plugin supports lazy.nvim installation.
- Default installation:
return {
"AlejandroSuero/colorscheme-installer.nvim",
config = function()
require("colorscheme-installer").setup()
end,
}
- Customizable installation:
return {
"AlejandroSuero/colorscheme-installer.nvim",
config = function()
require("colorscheme-installer.nvim").setup({
-- your configuration goes here
})
end,
}
Note
See default configuration.
local opts = {
-- path where the colorschemes will be configured
colorschemes_path = os.getenv("HOME") .. "/.config/nvim/lua/colorschemes"
}
Thank you to everyone that is contributing and to those who want to contribute. Any contribution is welcomed!
Quick guide:
- Fork this project.
- Clone your fork (
git clone <fork-URL>
). - Add main repo as remote (
git remote add upstream <main-repo-URL>
). - Create a branch for your changes (
git switch -c feature/your-feature
orgit switch -c fix/your-fix
). - Commit your changes (
git commit -m "feat(...): ..."
). - Push to your fork (
git push origin <branch-name>
). - Open a PR.
For more information, check CONTRIBUTING.md