summaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/catppuccin.lua
blob: 4387c11f59a164830ff6f6136b952dae116e7e4b (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
return {
	{
		"catppuccin/nvim",
		name = "catppuccin",
		lazy = false,
		priority = 1000,
		config = function()
			require("catppuccin").setup({
				flavour = "mocha",
				integrations = {
					telescope = true,
					treesitter = true,
					lsp_saga = true,
					lualine = true,
					nvimtree = true,
					dap = true,
					dap_ui = true,
				},
			})
			vim.cmd("colorscheme catppuccin")
		end,
	},
}