mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-24 21:41:04 +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 = {
|
dependencies = {
|
||||||
"nvim-lua/plenary.nvim",
|
"nvim-lua/plenary.nvim",
|
||||||
"nvim-tree/nvim-web-devicons",
|
"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",
|
cmd = "Telescope",
|
||||||
keys = {
|
keys = {
|
||||||
-- Files
|
-- Files
|
||||||
|
|
@ -76,6 +81,7 @@ return {
|
||||||
defaults = {
|
defaults = {
|
||||||
prompt_prefix = " ",
|
prompt_prefix = " ",
|
||||||
selection_caret = " ",
|
selection_caret = " ",
|
||||||
|
-- sorter = require("telescope.sorters").get_fzy_sorter(), -- TODO: Check if this will be needed
|
||||||
mappings = {
|
mappings = {
|
||||||
i = {
|
i = {
|
||||||
["<C-j>"] = function(...)
|
["<C-j>"] = function(...)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue