-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gulpfile and Gruntfile incorrect icon #456
Comments
Lazy loading is problematic. Please try and reproduce using the minimal nvim-tree bug report template as per #455 (comment) |
There's a lot going on there; please try a minimal config without lazy. |
Excellent. Please share so that we can reproduce. |
aye, this repo here has the files if it isn't a problem |
Sorry, I'm not going to debug your configuration. Minimal configuration as requested please. We'll be mandating that soon: #457 |
for name, url in pairs{
devicons = 'https://github.com/nvim-tree/nvim-web-devicons',
nvimtree = 'https://github.com/nvim-tree/nvim-tree.lua',
} do
local install_path = vim.fn.fnamemodify('devicons_issue'..name, ':p')
if vim.fn.isdirectory(install_path) == 0 then
vim.fn.system { 'git', 'clone', '--depth=1', url, install_path }
end
vim.opt.runtimepath:append(install_path)
end
require('nvim-web-devicons').setup{}
require('nvim-tree').setup() ran ofc with a nvim --clean -u minimal.lua, again I like to point out that this it not an issue that i'm having exclusively with nvim-tree but all other plugins that use devicons are also having the same issue |
Sounds like they're incorrect... pull requests are gratefully appreciated. |
…ypes (#459) * expanding gulpfile and gruntfile icons to other filetypes * running make --------- Co-authored-by: Alexander Courtis <[email protected]>
I'm using Lazy as my package manager devicons is a dependency for these following plugins that I have downloaded lualine, telescope and nvim-tree.
I already did a set_icon() for gulp I was able to change the icon but I wasn't able to change the color.
this is the result when I do a get_icon and a print
I already tried to make devicons load faster by putting it in a after/plugins folder which did make it load ahead of the plugins that are dependant on devicons but that didn't fix my problem, the icon is still the JS icon.
The text was updated successfully, but these errors were encountered: