josean-dev / dev-environment-files

2.98k stars 800 forks source link

nvim-tree legacy option used #64

Open ashemedai opened 5 months ago

ashemedai commented 5 months ago

Hi Josean,

a small feedback issue for you. You're using the legacy option for git in your configuration for nvim-tree:

      filters = {
        custom = { ".DS_Store" },
      },
      git = {
        ignore = false,
      },

You can rewrite this as:

      filters = {
        custom = { ".DS_Store" },
        git_ignored = false,
      },

HTH