summary refs log tree commit diff
path: root/.vim/lua/internal/plugins/colorschemes.lua
blob: e533ebbe68a451d7b46d4914a266e3446bf240f5 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
return {
  {
    enabled = false,
    'olivercederborg/poimandres.nvim',
    lazy = false,
    config = function()
      require('poimandres').setup({
        disable_background = true,
        -- dim_nc_background = true,
      })
    end,
    -- optionally set the colorscheme within lazy config
    -- init = function()
    --   vim.cmd('colorscheme poimandres')
    -- end,
  },
  {
    enabled = true,
    'https://github.com/slugbyte/lackluster.nvim',
    lazy = true,
    config = function()
      local lackluster = require('lackluster')
      lackluster.setup({
        tweak_color = {
          lack = '#70649a',
          -- luster = '#ff0000',
        },
        tweak_syntax = {
          comment = lackluster.color.gray6,
        },
        tweak_background = {
          normal = 'none',
        },
        tweak_highlight = {
          ['@markup.heading'] = {
            fg = '#ffffff',
          },
          ['@comment'] = {
            italic = true,
          },
        },
        tweak_ui = {
          enable_end_of_buffer = true,
        },
      })
    end,
    init = function()
      vim.g.darkmode_colorscheme_dark = 'lackluster'
    end,
  },
  {
    enabled = true,
    'https://github.com/elaijuh/acme.nvim',
    lazy = true,
    init = function()
      vim.g.darkmode_colorscheme_light = 'acme'
    end,
  },
}