diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-17 18:58:28 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-17 18:58:28 +0100 |
commit | 402fbd0d9dd4d05ce140f66451d52efccf744fe7 (patch) | |
tree | d552f6d88df621c22c22a084952ff3e8975e52d0 /lua/config/telescope.lua | |
parent | 09a7015cb70dd7aa5e23f61d7eed79a4396764d3 (diff) |
Add fzf plugin for telescope
Diffstat (limited to 'lua/config/telescope.lua')
-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" + }, }, }) |