feat(nvimtree): exclude terminal from window picker

This commit is contained in:
Daniel Cardona Rojas 2021-11-17 10:04:37 -05:00 committed by siduck
parent fd668e559e
commit 07b4d19b8f

View file

@ -17,6 +17,11 @@ g.nvim_tree_indent_markers = 1
g.nvim_tree_ignore = { ".git", "node_modules", ".cache" }
g.nvim_tree_quit_on_open = 0 -- closes tree when file's opened
g.nvim_tree_root_folder_modifier = table.concat { ":t:gs?$?/..", string.rep(" ", 1000), "?:gs?^??" }
g.nvim_tree_window_picker_exclude = {
filetype = { 'notify', 'packer', 'qf' },
buftype = {'terminal' },
}
--
g.nvim_tree_show_icons = {
folders = 1,