aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/theme.lua
blob: a4ae3014b445b3533792599ededa99280bd0c2ef (plain)
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
-- return {
--   {
--     "neanias/everforest-nvim",
--     priority = 1000,
--     config = function()
--       require("everforest").setup({
--         on_highlights = function(hl, palette)
--           hl.CursorLineNr = { fg = palette.yellow, bg = palette.none}
--         end,
--       })
--       vim.cmd.colorscheme "everforest"
--     end
--   }
-- }

-- return {
--   {
--     "ellisonleao/gruvbox.nvim",
--     priority = 1000,
--     config = function()
--       require("gruvbox").setup({
--         transparent_mode = true,
--         overrides = {
--           CursorLineNr = {bg = ""}
--         }
--       })
--       vim.cmd.colorscheme "gruvbox"
--     end
--   }
-- }
--
return {
  {
    "catppuccin/nvim",
    priority = 1000,
    config = function()
      require("catppuccin").setup({
        transparent_background = true,
      })
      vim.cmd.colorscheme "catppuccin"
    end
  }
}