nvim-tree / nvim-tree.lua

A file explorer tree for neovim written in lua

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

filter(hide) files with custom extensions

MohamedIrfanAM opened this issue · comments

I can hide '.exe' with the following config but other files are not filtered

  filters = {
    dotfiles = false,
    custom = {'.ans1','.out1','.in1','.exe'},
  },
commented

add a * before the . for matching filetypes :)

Worked, Thank you !!