aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins/colors.lua
blob: 25874097f68f9cbb9baa95bc477c1fc105def1a0 (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
return {
  {
    "brenoprata10/nvim-highlight-colors",
    event = { "BufReadPost", "BufNewFile" },
    config = function()
      require("nvim-highlight-colors").setup({
        render = 'background',
        enable_tailwind = true,
      })
    end
  },
  {
    "rose-pine/neovim",
    name = "rose-pine",
    priority = 1000,
    lazy = false,
    config = function()
      require("rose-pine").setup({
        styles = {
          transparency = true,
          italic = false,
        },
        highlight_groups = {
          StatusLine = { fg = "iris", bg = "iris", blend = 10 },
          StatusLineNC = { fg = "subtle", bg = "surface" },
        },
      })
      vim.cmd("colorscheme rose-pine")
    end
  },
}