Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gko/vim-reset
Vim Reset: A minimalist Vim/Neovim colorscheme that allows you to customise it by providing two colors.
https://github.com/gko/vim-reset
color colorscheme minimal neovim reset vim
Last synced: 4 days ago
JSON representation
Vim Reset: A minimalist Vim/Neovim colorscheme that allows you to customise it by providing two colors.
- Host: GitHub
- URL: https://github.com/gko/vim-reset
- Owner: gko
- License: gpl-3.0
- Created: 2024-05-22T16:19:03.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T16:23:33.000Z (3 months ago)
- Last Synced: 2024-09-15T21:47:15.834Z (about 2 months ago)
- Topics: color, colorscheme, minimal, neovim, reset, vim
- Language: Vim Script
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vim Reset
Vim Reset is a minimalist Vim/Neovim colorscheme. The entire theme depends on just two colors from the `Normal` highlight color group(see [Customization](#customization)). By changing just these two colors, you can update the entire theme. By default, it uses the terminal background color.
## Installation
This plugin is compatible with any Vim/Neovim plugin manager. For instance, if you're using `vim-plug`, you can install it like so:
```vimscript
Plug 'gko/vim-reset'
```## Usage
Then you can apply it by running:
```vimscript
colorscheme reset
```Supports both `light` and `dark` backgrounds, i.e.:
```vimscript
set background=dark
```## Customization
You can customize the background and foreground colors by modifying the Normal highlight color group. For example:
```vimscript
hi Normal guibg=white guifg=black
```This will set the background color to white and the foreground color to black.
## License
GPL-3.0. Please see [LICENSE](LICENSE) for details.