summaryrefslogtreecommitdiff
path: root/lua/plugins/eyecandy/themes.lua
blob: 118dbba62694934e21da7479df399e62e03dd63b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
return {
	{
		"catppuccin/nvim",
		enabled = true,
		lazy = false,
		priority = 1000,
		name = "catppuccin",
		config = function()
			local catp = require("catppuccin")
			catp.setup({
				flavour = "frappe",
				integrations = {
					indent_blankline = true,
					which_key = true,
					illuminate = true,
					lsp_trouble = true,
					navic = {
						enabled = true,
						custom_bg = "NONE",
					},
				},
			})
			vim.api.nvim_command("colorscheme catppuccin")
		end,
	},
	{
		"projekt0n/github-nvim-theme",
		enabled = false,
		lazy = false,
		priority = 1000,
		config = function()
			require("github-theme").setup({})
			vim.api.nvim_command("colorscheme github_dark_dimmed")
		end,
	},
	{
		"ellisonleao/gruvbox.nvim",
		enabled = false,
		lazy = false,
		priority = 1000,
		config = function()
			require("gruvbox").setup({})
			vim.api.nvim_command("colorscheme gruvbox")
		end,
	},
}