-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
devicons.lua
26 lines (24 loc) · 1.02 KB
/
devicons.lua
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
return {
'kyazdani42/nvim-web-devicons',
config = function(config)
require('nvim-web-devicons').setup(config.devicons)
end,
defaultConfig = {
'devicons',
{
override = {
-- Each icon must have "name" property
['.gitattributes'] = { icon = '', color = '#FA4F28', name = 'GitAttributes' },
['.gitconfig'] = { icon = '', color = '#FA4F28', name = 'GitConfig' },
['.gitignore'] = { icon = '', color = '#FA4F28', name = 'GitIgnore' },
['.gitlab-ci.yml'] = { icon = '', color = '#FC6D26', name = 'GitlabCI' },
['.gitmodules'] = { icon = '', color = '#FA4F28', name = 'GitModules' },
['.lua-format'] = { icon = '', color = '#28A2D4', name = 'LuaFormatter' },
['.editorconfig'] = { icon = '', color = '#BEC0C4', name = 'EditorConfig' },
['.eslintrc.yml'] = { icon = '', color = '#8080F2', name = 'EslintRC' },
['.prettierignore'] = { icon = '', color = '#C794C8', name = 'PrettierIgnore' },
['svg'] = { icon = '', color = '#BEC0C4', name = 'Svg' },
},
},
},
}