diff options
author | kylo252 <[email protected]> | 2022-05-25 13:35:38 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-05-25 13:35:38 +0200 |
commit | fc63a66ce8d26ab7acf5e178b85d0f69b097ca7e (patch) | |
tree | 1dc5ddb0ec1cdd1d225ded33f157a890699fc348 /lua/lvim/core/telescope.lua | |
parent | aa4c9930d9131c60d7a6f2e9bec8a2f3ba6c4055 (diff) | |
parent | 6dbba1f9597e0ba090702aea41357c29874aab7c (diff) |
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/lvim/core/telescope.lua')
-rw-r--r-- | lua/lvim/core/telescope.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lua/lvim/core/telescope.lua b/lua/lvim/core/telescope.lua index 5b55bdc3..6a04a866 100644 --- a/lua/lvim/core/telescope.lua +++ b/lua/lvim/core/telescope.lua @@ -72,7 +72,7 @@ function M.config() set_env = { ["COLORTERM"] = "truecolor" }, -- default = nil, pickers = { find_files = { - find_command = { "fd", "--type=file", "--hidden", "--smart-case" }, + hidden = true, }, live_grep = { --@usage don't include the filename in the search results @@ -130,6 +130,12 @@ function M.setup() end) end + if lvim.builtin.notify.active then + pcall(function() + require("telescope").load_extension "notify" + end) + end + if lvim.builtin.telescope.on_config_done then lvim.builtin.telescope.on_config_done(telescope) end |