An open API service indexing awesome lists of open source software.

https://github.com/qq3g7bad/pick-colorscheme.nvim

Select a colorscheme as if drawing lots.
https://github.com/qq3g7bad/pick-colorscheme.nvim

neovim neovim-plugin

Last synced: 3 months ago
JSON representation

Select a colorscheme as if drawing lots.

Awesome Lists containing this project

README

        

# 🎨pick-colorscheme.nvim

Select a colorscheme as if drawing lots.

## 🎲Usage

You can select a colorscheme randomly. Run this command in vim.

```vim
:PickColorscheme
```

### 💡Select colorschemes

If you want to limit colorschemes to pick, run this command in vim. In
this case, the colorscheme will be selected from either "blue" or "default".

```vim
:PickColorscheme blue default
```

Or

```lua
:lua require("pick-colorscheme").pick_colorscheme({"blue", "default"})
```