nvim: remove extension configuration from Telescope setup

This makes the Telescope plugin configuration more independent from
extensions. The next step would be to move the `fzf-native` extension to
its own file.
This commit is contained in:
Fernando Schauenburg 2024-07-21 01:25:46 +02:00
parent fef06d87b3
commit 37aec2fac7
2 changed files with 1 additions and 4 deletions

View file

@ -7,7 +7,7 @@ return {
dependencies = "nvim-telescope/telescope.nvim",
keys = {
{ lhs("B"), "<cmd>Telescope file_browser<cr>", desc = desc("file [B]rowser") },
{ lhs("B"), "<cmd>Telescope file_browser theme=ivy<cr>", desc = desc("file [B]rowser") },
},
config = function()

View file

@ -177,9 +177,6 @@ return {
colorscheme = { theme = "dropdown" },
spell_suggest = { theme = "cursor" },
},
extensions = {
file_browser = { theme = "ivy" },
},
})
end,