File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -343,16 +343,17 @@ Here is a list of the options available in the setup call:
343
343
- | git | : git integration with icons and colors
344
344
345
345
- | git.enable | : enable / disable the feature
346
- type: `boolean `
347
- default: `true`
346
+ type: `boolean `
347
+ default: `true`
348
348
349
349
- | git.ignore | : ignore files based on `.gitignore`
350
- type: `boolean `
351
- default: `true`
350
+ Toggle via the `toggle_git_ignored` action, default mapping `I` .
351
+ type: `boolean `
352
+ default: `true`
352
353
353
354
- | git.timeout | : kills the git process after some time if it takes too long
354
- type: `number `
355
- default: `400 ` (ms)
355
+ type: `number `
356
+ default: `400 ` (ms)
356
357
357
358
You will still need to configure `g: nvim_tree_show_icons .git` or
358
359
`g: nvim_tree_git_hl ` to be able to see things in the tree. This will be
@@ -435,17 +436,19 @@ Here is a list of the options available in the setup call:
435
436
*nvim-tree.filters*
436
437
| filters | : filtering options
437
438
438
- - | filters.dotfiles | : do not show `dotfiles` (files starting with a `.` )
439
+ - | filters.dotfiles | : do not show dotfiles: files starting with a `.`
440
+ Toggle via the `toggle_dotfiles` action, default mapping `H` .
439
441
type: `boolean `
440
442
default: `false`
441
443
442
444
- | filters.custom | : custom list of vim regex for file/directory names that will not be shown.
443
445
Backslashes must be escaped e.g. "^\\.git". See | string-match | .
446
+ Toggle via the `toggle_custom` action, default mapping `U` .
444
447
type: `{string }`
445
448
default: `{}`
446
449
447
- - | filters.exclude | : list of directories or files to exclude from filtering
448
- (will always be shown)
450
+ - | filters.exclude | : list of directories or files to exclude from filtering: always show them.
451
+ Overrides `git. ignore ` , `filters.dotfiles` and `filters. custom ` .
449
452
type: `{string }`
450
453
default: `{}`
451
454
You can’t perform that action at this time.
0 commit comments