Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lunarvim/colorschemes
🌈 Collection of colorschemes made to be compatible with LunarVim
https://github.com/lunarvim/colorschemes
theme vim
Last synced: about 2 months ago
JSON representation
🌈 Collection of colorschemes made to be compatible with LunarVim
- Host: GitHub
- URL: https://github.com/lunarvim/colorschemes
- Owner: LunarVim
- License: agpl-3.0
- Created: 2021-07-11T02:44:12.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T04:39:43.000Z (over 1 year ago)
- Last Synced: 2024-11-03T03:32:03.119Z (about 2 months ago)
- Topics: theme, vim
- Language: Lua
- Homepage:
- Size: 359 KB
- Stars: 90
- Watchers: 4
- Forks: 23
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LunarVimColorschemes
Collection of colorschemes made to be compatible with LunarVim
## Setup
```sh
pip install -r requirements.txt
```## Adding a template
I recommend copying one of the themes in template and using it as a base to create your own
## Generate your colorscheme
```
python ez.py .yml
```## After generating your colorscheme the following configuration options should be available
```lua
vim.g.transparent_background = true -- transparent background(Default: false)
vim.g.italic_comments = true -- italic comments(Default: true)
vim.g.italic_keywords = true -- italic keywords(Default: true)
vim.g.italic_functions = true -- italic functions(Default: false)
vim.g.italic_variables = true -- italic variables(Default: false)
```**Credit** for the script for creating colorschemes: [repo](https://github.com/Murtaza-Udaipurwala/ez.nvim)