diff options
Diffstat (limited to 'lua/config')
-rw-r--r-- | lua/config/telescope.lua | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lua/config/telescope.lua b/lua/config/telescope.lua index b34b35f..8f155c9 100644 --- a/lua/config/telescope.lua +++ b/lua/config/telescope.lua @@ -89,10 +89,12 @@ telescope.setup({ -- builtin picker }, extensions = { - -- Your extension configuration goes here: - -- extension_name = { - -- extension_config_key = value, - -- } - -- please take a look at the readme of the extension you want to configure + fzf = { + fuzzy = true, -- false will only do exact matching + override_generic_sorter = true, -- override the generic sorter + override_file_sorter = true, -- override the file sorter + case_mode = "smart_case", -- or "ignore_case" or "respect_case" + -- the default case_mode is "smart_case" + }, }, }) |