mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-23 12:16:28 +02:00
Implement fzy native to speed up telescope (#330)
* impliment fzy-native * match pattern
This commit is contained in:
parent
a69bf73fd2
commit
76e1912b99
2 changed files with 7 additions and 0 deletions
|
@ -61,5 +61,11 @@ require('telescope').setup {
|
|||
-- ["<C-i>"] = my_cool_custom_action,
|
||||
}
|
||||
}
|
||||
},
|
||||
extensions = {
|
||||
fzy_native = {
|
||||
override_generic_sorter = false,
|
||||
override_file_sorter = true,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,6 +44,7 @@ return require("packer").startup(
|
|||
use {"nvim-lua/popup.nvim", opt = true}
|
||||
use {"nvim-lua/plenary.nvim", opt = true}
|
||||
use {"nvim-telescope/telescope.nvim", opt = true}
|
||||
use {"nvim-telescope/telescope-fzy-native.nvim", opt = true}
|
||||
|
||||
-- Debugging
|
||||
use {"mfussenegger/nvim-dap", opt = true}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue