nvim/lua/plugins/colorschemes.lua 391 B raw
1
return {
2
	'olivercederborg/poimandres.nvim',
3
	lazy = false,
4
	priority = 1000,
5
	config = function()
6
		require('poimandres').setup {
7
			-- leave this setup function empty for default config
8
			-- or refer to the configuration section
9
			-- for configuration options
10
		}
11
	end,
12
13
	-- optionally set the colorscheme within lazy config
14
	init = function()
15
		vim.cmd("colorscheme poimandres")
16
	end
17
}