awesome-nvim-colorschemes icon indicating copy to clipboard operation
awesome-nvim-colorschemes copied to clipboard

A collection of the best NeoVim colorschemes with a one setupto set the colorscheme & style & even more!

Awesome Nvim Colorschemes


The best collection of NeoVim specific color schemes! Inspered by rafi/awesome-vim-colorschemes


Installation

Using Packer

use "AbdelrahmanDwedar/awesome-nvim-colorschemes"

Using Vim-Plug

Plug 'AbdelrahmanDwedar/awesome-nvim-colorschemes'

Usage

This plugin has the scripts of all colorschemes listed in #colorschemes.

You can simply go to each colorschemes and check their configuring style and everything else you need.

Samples

Tokyonight.nvim

lua:

require('tokyonight').setup({
	style = "night",
	transparent = true,
	terminal_colors = true,
	styles = {
		sidebars = "transparent", -- style for sidebars, see below
		floats = "transparent",
	}
})

vim script:

lua << EOF
require('tokyonight').setup({
	style = "night",
	transparent = true,
	terminal_colors = true,
	styles = {
		sidebars = "transparent", -- style for sidebars, see below
		floats = "transparent",
	}
})
EOF

catppuccin

lua:

require("catppuccin").setup {
	flavour = "macchiato" -- mocha, macchiato, frappe, latte
	transparent_background = true,
	integrations = {
			telescope = true
	}
}

vim script:

lua << EOF
require("catppuccin").setup {
	flavour = "macchiato" -- mocha, macchiato, frappe, latte
	transparent_background = true,
	integrations = {
			telescope = true
	}
}
EOF

Colorschemes


Alternatives

ThemerCorp/themer.lua

Made by AbdelrahmanDwedar | GPL License