Skip to content

Carlosiano/vim-synthwave84

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Synthwave 84 Vim theme

The port of SynthWave '84 - VS Code theme to Vim

Screenshots

Ruby

Synthwave84-ruby

JavaScript

Synthwave84-js

Vim script

Synthwave84-vimrc

Installation

Option 1: Manual

  1. Download and move synthwave84.vim to the ~/.vim/colors directory:

    cd vim-synthwave84/colors
    mkdir ~/.vim
    mv synthwave84.vim ~/.vim/colors/

Option 2: vim-plug

  1. Install the vim-plug plugin manager.

  2. Install vim-synthwave84 using vim-plug:

    a. Put the following line in the ~/.vimrc file:

    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

This theme requires vim to support the +termguicolors option.

To check for this option run:

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:

set termguicolors

The colors should then appear correctly after reloading vim:

correct color

Here is a text copy of the ~/.vimrc file shown in the screenshot above:

set term=xterm-256color
"set term=screen-256color
if has('termguicolors')
    set termguicolors
endif

set background=dark

call plug#begin("~/.vim/plugged")
    Plug 'artanikin/vim-synthwave84'
call plug#end()

colorscheme synthwave84

About

colorscheme neovim

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published