mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 04:21:03 +00:00
Use native finder on telescope
This commit is contained in:
parent
a711c9f633
commit
c4b120dd3d
1 changed files with 6 additions and 0 deletions
|
|
@ -26,7 +26,12 @@ return {
|
|||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"nvim-telescope/telescope-fzy-native.nvim",
|
||||
},
|
||||
config = function()
|
||||
local telescope = require("telescope")
|
||||
telescope.load_extension("fzy_native")
|
||||
end,
|
||||
cmd = "Telescope",
|
||||
keys = {
|
||||
-- Files
|
||||
|
|
@ -76,6 +81,7 @@ return {
|
|||
defaults = {
|
||||
prompt_prefix = " ",
|
||||
selection_caret = " ",
|
||||
-- sorter = require("telescope.sorters").get_fzy_sorter(), -- TODO: Check if this will be needed
|
||||
mappings = {
|
||||
i = {
|
||||
["<C-j>"] = function(...)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue