Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artanikin/vim-synthwave84
The port of SynthWave '84 - VS Code theme to Vim
https://github.com/artanikin/vim-synthwave84
Last synced: 6 days ago
JSON representation
The port of SynthWave '84 - VS Code theme to Vim
- Host: GitHub
- URL: https://github.com/artanikin/vim-synthwave84
- Owner: artanikin
- Created: 2019-08-07T07:32:35.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-23T06:50:55.000Z (over 3 years ago)
- Last Synced: 2024-08-01T16:56:16.793Z (3 months ago)
- Language: Vim script
- Size: 832 KB
- Stars: 136
- Watchers: 4
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - artanikin/vim-synthwave84 - The port of SynthWave '84 - VS Code theme to Vim (Vim Script)
README
# Synthwave 84 Vim theme
The port of [SynthWave '84 - VS Code theme to Vim](https://github.com/robb0wen/synthwave-vscode)
## Screenshots
### Ruby
![Synthwave84-ruby](https://raw.githubusercontent.com/artanikin/vim-synthwave84/master/media/ruby2.png)### JavaScript
![Synthwave84-js](https://raw.githubusercontent.com/artanikin/vim-synthwave84/master/media/js2.png)### Vim script
![Synthwave84-vimrc](https://raw.githubusercontent.com/artanikin/vim-synthwave84/master/media/vim2.png)# Installation
## Option 1: Manual
1. Download and move `synthwave84.vim` to the `~/.vim/colors` directory:
```sh
cd vim-synthwave84/colors
mkdir ~/.vim
mv synthwave84.vim ~/.vim/colors/
```## Option 2: vim-plug
1. Install the [vim-plug](https://github.com/junegunn/vim-plug) plugin manager.
2. Install `vim-synthwave84` using `vim-plug`:
a. Put the following line in the `~/.vimrc` file:
```ini
Plug 'artanikin/vim-synthwave84'
```b. Reload `~/.vimrc` and run `:PlugInstall` to install the plugin.
c. Put the following line in the `~/.vimrc` file and reload `vim`:
```
colorscheme synthwave84
```# Troubleshooting
## Colors are Wrong
![incorrect color](https://raw.githubusercontent.com/artanikin/vim-synthwave84/master/media/incorrect-colors.png)
This theme requires `vim` to support the
`+termguicolors` option.To check for this option run:
```sh
vim --version | grep -o '+termguicolors'
```NOTE: If the option is __not__ available no output will show.
If the option is available, add the following
to the `~/.vimrc` file:
```ini
set termguicolors
```The colors should then appear correctly after reloading `vim`:
![correct color](https://raw.githubusercontent.com/artanikin/vim-synthwave84/master/media/correct-colors.png)
Here is a text copy of the `~/.vimrc` file shown
in the screenshot above:```ini
set term=xterm-256color
"set term=screen-256color
if has('termguicolors')
set termguicolors
endifset background=dark
call plug#begin("~/.vim/plugged")
Plug 'artanikin/vim-synthwave84'
call plug#end()colorscheme synthwave84
```