aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/colorscheme.lua
blob: 04d87598006b4b25991ed42c9c0d3d60fd323c45 (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
44
return {
    -- {
    --     "folke/tokyonight.nvim",
    --     opts = {
    --         transparent = true,
    --         styles = {
    --             sidebars = "transparent",
    --             floats = "transparent",
    --         },
    --     },
    -- },

    "RedsXDD/neopywal.nvim",
    name = "neopywal",
    lazy = false,
    priority = 1000,
    opts = {
        transparent_background = true,
        plugins = {
            alpha = true,
            dashboard = false,
            git_gutter = true,
            indent_blankline = true,
            lazy = true,
            lazygit = true,
            noice = false,
            notify = true,
            nvim_cmp = true,
            mini = {
                hipatterns = true,
                indentscope = {
                    enabled = false,
                },
                pick = true,
                starter = true,
            },
        },
    },

    config = function(_, opts)
        require("neopywal").setup(opts)
        vim.cmd.colorscheme("neopywal")
    end,
}