Skip to content

Commit

Permalink
feat: ignore jujutsu folders
Browse files Browse the repository at this point in the history
  • Loading branch information
cfcosta committed Oct 23, 2024
1 parent 79ef960 commit 1bc8093
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions plugins/neo-tree/configuration.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ require("neo-tree").setup({

never_show = {
".git",
".jj",
".obsidian",
".stfolder",
".trash",
Expand Down
10 changes: 9 additions & 1 deletion plugins/telescope/configuration.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,15 @@ local options = {
},
find_command = { "rg", "--files", "--hidden", "--ignore-vcs" },
file_sorter = sorters.get_fuzzy_file,
file_ignore_patterns = { "node_modules", "%.git", ".obsidian", ".stfolder", ".trash", ".versions" },
file_ignore_patterns = {
"%.git",
".jj",
".obsidian",
".stfolder",
".trash",
".versions",
"node_modules",
},
generic_sorter = sorters.get_generic_fuzzy_sorter,
path_display = { "truncate" },
winblend = 0,
Expand Down

0 comments on commit 1bc8093

Please sign in to comment.