AbdelrahmanDwedar / awesome-nvim-colorschemes

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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

About

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

License:GNU General Public License v3.0


Languages

Language:Lua 97.6%Language:Shell 2.3%Language:Vim Script 0.1%