9ffddb6b52
* move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
127 lines
2.4 KiB
Lua
127 lines
2.4 KiB
Lua
local present, icons = pcall(require, "nvim-web-devicons")
|
|
if not present then
|
|
return
|
|
end
|
|
|
|
local colors = require("colors").get()
|
|
|
|
icons.setup {
|
|
override = {
|
|
c = {
|
|
icon = "",
|
|
color = colors.blue,
|
|
name = "c",
|
|
},
|
|
css = {
|
|
icon = "",
|
|
color = colors.blue,
|
|
name = "css",
|
|
},
|
|
deb = {
|
|
icon = "",
|
|
color = colors.cyan,
|
|
name = "deb",
|
|
},
|
|
Dockerfile = {
|
|
icon = "",
|
|
color = colors.cyan,
|
|
name = "Dockerfile",
|
|
},
|
|
html = {
|
|
icon = "",
|
|
color = colors.baby_pink,
|
|
name = "html",
|
|
},
|
|
jpeg = {
|
|
icon = "",
|
|
color = colors.dark_purple,
|
|
name = "jpeg",
|
|
},
|
|
jpg = {
|
|
icon = "",
|
|
color = colors.dark_purple,
|
|
name = "jpg",
|
|
},
|
|
js = {
|
|
icon = "",
|
|
color = colors.sun,
|
|
name = "js",
|
|
},
|
|
kt = {
|
|
icon = "",
|
|
color = colors.orange,
|
|
name = "kt",
|
|
},
|
|
lock = {
|
|
icon = "",
|
|
color = colors.red,
|
|
name = "lock",
|
|
},
|
|
lua = {
|
|
icon = "",
|
|
color = colors.blue,
|
|
name = "lua",
|
|
},
|
|
mp3 = {
|
|
icon = "",
|
|
color = colors.white,
|
|
name = "mp3",
|
|
},
|
|
mp4 = {
|
|
icon = "",
|
|
color = colors.white,
|
|
name = "mp4",
|
|
},
|
|
out = {
|
|
icon = "",
|
|
color = colors.white,
|
|
name = "out",
|
|
},
|
|
png = {
|
|
icon = "",
|
|
color = colors.dark_purple,
|
|
name = "png",
|
|
},
|
|
py = {
|
|
icon = "",
|
|
color = colors.cyan,
|
|
name = "py",
|
|
},
|
|
toml = {
|
|
icon = "",
|
|
color = colors.blue,
|
|
name = "toml",
|
|
},
|
|
ts = {
|
|
icon = "ﯤ",
|
|
color = colors.teal,
|
|
name = "ts",
|
|
},
|
|
rb = {
|
|
icon = "",
|
|
color = colors.pink,
|
|
name = "rb",
|
|
},
|
|
rpm = {
|
|
icon = "",
|
|
color = colors.orange,
|
|
name = "rpm",
|
|
},
|
|
vue = {
|
|
icon = "﵂",
|
|
color = colors.vibrant_green,
|
|
name = "vue",
|
|
},
|
|
xz = {
|
|
icon = "",
|
|
color = colors.sun,
|
|
name = "xz",
|
|
},
|
|
zip = {
|
|
icon = "",
|
|
color = colors.sun,
|
|
name = "zip",
|
|
},
|
|
},
|
|
}
|