local function config() local neotree = require('neo-tree') neotree.setup({ enable_diagnostics = false, filesystem = { filtered_items = { hide_gitignored = false, never_show = { -- hide_by_name '__pycache__', }, }, follow_current_file = { enabled = true, }, }, window = { mappings = { ['/'] = 'none', -- disable fuzzy finder }, }, }) end return config