summaryrefslogtreecommitdiff
path: root/public/nvim/.nvim/lua/plugins/eyecandy/themes.lua
blob: 42e5d6cc9321ec0759af985b9e2d4740e91c1b8a (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
return {
	{
		"catppuccin/nvim",
		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,
	},
}