/
/
/
1return {
2 "zaldih/themery.nvim",
3 lazy = false,
4 priority = 1000,
5 config = function()
6 require("themery").setup({
7 themes = {
8 {
9 name = "catppuccin",
10 colorscheme = "catppuccin",
11 },
12 {
13 name = "tokyonight",
14 colorscheme = "tokyonight",
15 },
16 {
17 name = "rose-pine",
18 colorscheme = "rose-pine",
19 },
20 {
21 name = 'catppuccin-mocha',
22 colorscheme='catppuccin',
23 before = [[
24 local catppuccin = require('catppuccin')
25 catppuccin.setup({
26 flavour = "mocha",
27 transparent_background = false,
28 show_end_of_buffer = false,
29 term_colors = false,
30 styles = {
31 comments = { 'bold' },
32 conditionals = { 'bold' },
33 },
34 integrations = {
35 cmp = true,
36 gitsigns = true,
37 nvimtree = true,
38 treesitter = true,
39 },
40 })]]
41 },
42 {
43 name = 'catppuccin-frappe',
44 colorscheme='catppuccin',
45 before = [[
46 local catppuccin = require('catppuccin')
47 catppuccin.setup({
48 flavour = "frappe",
49 transparent_background = false,
50 show_end_of_buffer = false,
51 term_colors = false,
52 styles = {
53 comments = { 'bold' },
54 conditionals = { 'bold' },
55 },
56 integrations = {
57 cmp = true,
58 gitsigns = true,
59 nvimtree = true,
60 treesitter = true,
61 },
62 })]]
63 },
64 {
65 name = 'catppuccin-macchiato',
66 colorscheme='catppuccin',
67 before = [[
68 local catppuccin = require('catppuccin')
69 catppuccin.setup({
70 flavour = "macchiato",
71 transparent_background = false,
72 show_end_of_buffer = false,
73 term_colors = false,
74 styles = {
75 comments = { 'bold' },
76 conditionals = { 'bold' },
77 },
78 integrations = {
79 cmp = true,
80 gitsigns = true,
81 nvimtree = true,
82 treesitter = true,
83 },
84 })]]
85 }
86 },
87 livePreview = true,
88 })
89 end
90 }
91