Skip to content

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

License

Notifications You must be signed in to change notification settings

AbdelrahmanDwedar/awesome-nvim-colorschemes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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