feat(fzf)!: switch to fzf-lua instead of telescope

Change the picker provider to fzf-lua and remove telescope plugin

BREAKING CHANGE: Telescope is removed. Fzf-lua provides equivalent functionality. However, the remote-nvim plugin depended on Telescope so it has also been removed.
This commit is contained in:
2024-08-04 04:00:45 -04:00
parent 7f50e6b76e
commit 335fe93d8a
2 changed files with 8 additions and 25 deletions
+4 -11
View File
@@ -15,9 +15,13 @@ return {
{ -- Dial
import = "lazyvim.plugins.extras.editor.dial",
},
{ -- Fzf
import = "lazyvim.plugins.extras.editor.fzf",
},
{ -- Illuminate
import = "lazyvim.plugins.extras.editor.illuminate",
},
{
"akinsho/bufferline.nvim",
opts = {
@@ -106,17 +110,6 @@ return {
event = "BufReadPre",
opts = {},
},
{ -- Remote-nvim
"amitds1997/remote-nvim.nvim",
lazy = true,
version = "*", -- Pin to GitHub releases
dependencies = {
"nvim-lua/plenary.nvim", -- For standard functions
"MunifTanjim/nui.nvim", -- To build the plugin UI
"nvim-telescope/telescope.nvim", -- For picking b/w different remote methods
},
config = true,
},
{ -- DeadColumn
"Bekaboo/deadcolumn.nvim",
event = "BufEnter",