Skip to content

Commit

Permalink
feat: ignore python .venv folder in telescope search
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbuhr committed Mar 7, 2023
1 parent bdd9a8d commit 071183a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ return {
telescope.setup {
defaults = {
buffer_previewer_maker = new_maker,
file_ignore_patterns = { "node_modules", "%_files/*.html", "%_cache", ".git/", "site_libs" },
file_ignore_patterns = { "node_modules", "%_files/*.html", "%_cache", ".git/", "site_libs", ".venv" },
layout_strategy = "flex",
sorting_strategy = "ascending",
layout_config = {
Expand Down

0 comments on commit 071183a

Please sign in to comment.