GitHub

an alternative dark color scheme for vim

Color References

2021-10-10_00-10 2021-10-10_00-11

Installation

  1. Install the color scheme using your Vim plug-in manager of choice (or manually, by placing colors/nimda.vim in your ~/.vim/colors/ directory and autoload/nimda.vim in your ~/.vim/autoload/ directory.)

  2. If you use Vim in a terminal, the terminal 'must' support the True Color(24-bit) in order to have best experience from the color scheme. So, do the following to test whether your terminal emulator supports 24-bit/"true" color:

    Note: GUI (non-terminal) Vim will always display 24-bit color regardless of the configuration done in this step.

    Run the following snippet in your shell:

    printf "\x1b[38;2;255;100;0mTRUECOLOR\x1b[0m\n"
  3. Add the following lines to your .vimrc or init.vim:

    syntax on
    set termguicolors
    colorscheme nimda

Read the original on github.com ↗