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.
- Host: GitHub
- URL: https://github.com/qq3g7bad/pick-colorscheme.nvim
- Owner: qq3g7bad
- License: mit
- Created: 2024-05-05T23:14:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-05T23:01:46.000Z (10 months ago)
- Last Synced: 2025-01-18T12:31:54.870Z (5 months ago)
- Topics: neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"})
```