summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/devicons.lua
blob: 712ecc68d2f5c0368fb7da854e98d005b290cdd5 (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
return {
    {
        "nvim-tree/nvim-web-devicons",
        opts = {
            override = {
                wiki = {
                    icon  = "󰂺",
                    color = "#D7827E",
                    name  = "vimwiki"
                },
                rem = {
                    icon  = " ",
                    color = "#B4637A",
                    name  = "remind"
                },
                mail = {
                    icon  = "󰇰 ",
                    color = "#907AA9",
                    name  = "mail"
                },
            },
            default = true
        },
    },
}