feat(config): add notify to nvim_tree_window_picker_exclude (#613)

This commit is contained in:
gegoune 2021-09-12 14:31:31 +02:00 committed by GitHub
parent 4db5dfa320
commit d7f73b5ae9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@ let g:nvim_tree_respect_buf_cwd = 1 "0 by default, will change cwd of nvim-tree
let g:nvim_tree_refresh_wait = 500 "1000 by default, control how often the tree can be refreshed, 1000 means the tree can be refresh once per 1000ms.
let g:nvim_tree_window_picker_exclude = {
\ 'filetype': [
\ 'notify',
\ 'packer',
\ 'qf'
\ ],

View File

@ -98,6 +98,7 @@ function M.window_picker_exclude()
end
return {
filetype = {
"notify",
"packer",
"qf"
}