]> Arthur Taft Gitweb - nvim.git/blob - lua/plugins/window_picker.lua
Change tab indent to 4 spaces
[nvim.git] / lua / plugins / window_picker.lua
1 return {
2         {
3                 "s1n7ax/nvim-window-picker",
4                 name = "window-picker",
5                 version = "2.*",
6                 event = "VeryLazy",
7                 opts = {
8                         autoselect_one = true,
9                         include_current = false,
10                         filter_rules = {
11                                 bo = {
12                                         filetype = { "neo-tree", "neo-tree-popup", "notify", "quickfix" },
13                                         buftype = { "terminal" },
14                                 },
15                         },
16                         -- remove the `highlights = ...` block entirely
17                 },
18         },
19 }