summaryrefslogtreecommitdiff
path: root/dot-config/nvim/lua/plugins/theme.lua
blob: 2969c42a101ba7df35140af624f1200b2b04e472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
return {
  -- gruvbox material
  -- https://github.com/sainnhe/gruvbox-material
  {
    "sainnhe/gruvbox-material",
    lazy = false,
    priority = 1000,
    config = function()
      vim.g.gruvbox_material_transparent_background = 2
    end,
  },

  {
    "LazyVim/LazyVim",
    opts = {
      colorscheme = "gruvbox-material",
    },
  },
}