2021-06-26 02:38:12 +00:00
|
|
|
local global_theme = "themes/" .. vim.g.nvchad_theme
|
|
|
|
local colors = require(global_theme)
|
2021-06-14 02:27:56 +00:00
|
|
|
|
2021-03-13 01:23:02 +00:00
|
|
|
require "nvim-web-devicons".setup {
|
|
|
|
override = {
|
|
|
|
html = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.baby_pink,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "html"
|
|
|
|
},
|
|
|
|
css = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.blue,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "css"
|
|
|
|
},
|
|
|
|
js = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.sun,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "js"
|
|
|
|
},
|
2021-03-18 10:03:11 +00:00
|
|
|
ts = {
|
|
|
|
icon = "ﯤ",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.teal,
|
2021-03-18 10:03:11 +00:00
|
|
|
name = "ts"
|
|
|
|
},
|
2021-03-19 12:24:53 +00:00
|
|
|
kt = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.orange,
|
2021-03-19 12:24:53 +00:00
|
|
|
name = "kt"
|
|
|
|
},
|
2021-03-13 01:23:02 +00:00
|
|
|
png = {
|
2021-06-14 02:27:56 +00:00
|
|
|
icon = "",
|
|
|
|
color = colors.dark_purple,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "png"
|
|
|
|
},
|
|
|
|
jpg = {
|
2021-06-14 02:27:56 +00:00
|
|
|
icon = "",
|
|
|
|
color = colors.dark_purple,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "jpg"
|
|
|
|
},
|
|
|
|
jpeg = {
|
2021-06-14 02:27:56 +00:00
|
|
|
icon = "",
|
|
|
|
color = "colors.dark_purple",
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "jpeg"
|
|
|
|
},
|
|
|
|
mp3 = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.white,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "mp3"
|
|
|
|
},
|
|
|
|
mp4 = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.white,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "mp4"
|
|
|
|
},
|
|
|
|
out = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.white,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "out"
|
|
|
|
},
|
2021-03-23 04:51:40 +00:00
|
|
|
Dockerfile = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.cyan,
|
2021-03-23 04:51:40 +00:00
|
|
|
name = "Dockerfile"
|
|
|
|
},
|
|
|
|
rb = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.pink,
|
2021-03-23 04:51:40 +00:00
|
|
|
name = "rb"
|
|
|
|
},
|
|
|
|
vue = {
|
|
|
|
icon = "﵂",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.vibrant_green,
|
2021-03-23 04:51:40 +00:00
|
|
|
name = "vue"
|
|
|
|
},
|
|
|
|
py = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.cyan,
|
2021-03-23 04:51:40 +00:00
|
|
|
name = "py"
|
|
|
|
},
|
2021-03-13 01:23:02 +00:00
|
|
|
toml = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.blue,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "toml"
|
|
|
|
},
|
|
|
|
lock = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.red,
|
2021-03-13 01:23:02 +00:00
|
|
|
name = "lock"
|
2021-03-16 04:01:43 +00:00
|
|
|
},
|
|
|
|
zip = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.sun,
|
2021-03-16 04:01:43 +00:00
|
|
|
name = "zip"
|
|
|
|
},
|
|
|
|
xz = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.sun,
|
2021-03-16 04:01:43 +00:00
|
|
|
name = "xz"
|
2021-04-26 08:21:36 +00:00
|
|
|
},
|
|
|
|
deb = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.cyan,
|
2021-04-26 08:21:36 +00:00
|
|
|
name = "deb"
|
|
|
|
},
|
|
|
|
rpm = {
|
|
|
|
icon = "",
|
2021-06-14 02:27:56 +00:00
|
|
|
color = colors.orange,
|
2021-04-26 08:21:36 +00:00
|
|
|
name = "rpm"
|
2021-06-26 02:35:24 +00:00
|
|
|
},
|
|
|
|
lua = {
|
|
|
|
icon = "",
|
|
|
|
color = colors.blue,
|
|
|
|
name = "lua"
|
2021-03-13 01:23:02 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-07 14:22:30 +00:00
|
|
|
}
|