diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index d23ee0a..25f00e5 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -17,7 +17,7 @@ return { function() require("telescope.builtin").live_grep({ additional_args = function() - return { "--glob", "!dist/*", "--glob", "!dist_prod/*" } + return { "--glob", "!**/dist/**", "--glob", "!**/dist_prod/**" } end, }) end, @@ -28,7 +28,7 @@ return { function() require("telescope.builtin").diagnostics() end, - desc = "Live Grep", + desc = "Diagnostics", }, { "gd",