feat: nvim explorer exclude patterns

This commit is contained in:
AngeD 2023-04-18 14:44:31 +02:00
parent 4a2276dbee
commit 9865df6782
4 changed files with 6 additions and 5 deletions

View File

@ -38,6 +38,7 @@ vim.wo.colorcolumn = "80"
vim.g.black_linelength = 79 vim.g.black_linelength = 79
vim.g.netrw_banner = 0 vim.g.netrw_banner = 0
vim.g.netrw_list_hide = "\\.o$,\\.d$"
vim.o.lazyredraw = true vim.o.lazyredraw = true

View File

@ -1,8 +1,8 @@
vim.cmd("packadd telescope") vim.cmd("packadd telescope")
require"telescope".setup { require"telescope".setup {
pickers = { defaults = {
find_files = { file_ignore_patterns = {
find_command = {"find", ".", "-type", "f"} ".o$", ".d$"
} }
} }
} }

@ -1 +1 @@
Subproject commit 6fe69025b8825029ea9bf291ab3b1750f9bcb39e Subproject commit eddaef928c1e1dd79a96f5db45f2fd7f2efe7ea0

@ -1 +1 @@
Subproject commit 0efa55ae2e6676b1a4cb66c5ee31ea295c6ebc2f Subproject commit c79c37927bb6a937b5b85c45125db75dc204a6ef