✨ 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:
@@ -5,6 +5,7 @@
|
|||||||
return {
|
return {
|
||||||
-- Dashboard
|
-- Dashboard
|
||||||
"nvimdev/dashboard-nvim",
|
"nvimdev/dashboard-nvim",
|
||||||
|
event = "UIEnter",
|
||||||
opts = function()
|
opts = function()
|
||||||
local logo_path = vim.fn.stdpath("config") .. "/logo/"
|
local logo_path = vim.fn.stdpath("config") .. "/logo/"
|
||||||
local height, width = vim.fn.winheight(0), vim.fn.winwidth(0)
|
local height, width = vim.fn.winheight(0), vim.fn.winwidth(0)
|
||||||
@@ -61,7 +62,7 @@ return {
|
|||||||
action = "LazyGit",
|
action = "LazyGit",
|
||||||
desc = " LazyGit",
|
desc = " LazyGit",
|
||||||
icon = " ",
|
icon = " ",
|
||||||
key = "G",
|
key = "z",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
action = "lua LazyVim.pick.config_files()()",
|
action = "lua LazyVim.pick.config_files()()",
|
||||||
@@ -75,18 +76,6 @@ return {
|
|||||||
icon = " ",
|
icon = " ",
|
||||||
key = "s",
|
key = "s",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
action = "LoadRemote",
|
|
||||||
desc = " Remote Session",
|
|
||||||
icon = " ",
|
|
||||||
key = "S",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
action = "LazyExtras",
|
|
||||||
desc = " Lazy Extras",
|
|
||||||
icon = " ",
|
|
||||||
key = "x",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
action = "Lazy",
|
action = "Lazy",
|
||||||
desc = " Lazy",
|
desc = " Lazy",
|
||||||
@@ -106,7 +95,8 @@ return {
|
|||||||
local stats = require("lazy").stats()
|
local stats = require("lazy").stats()
|
||||||
local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)
|
local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)
|
||||||
return {
|
return {
|
||||||
"⚡ Neovim loaded "
|
-- "⚡ Neovim loaded "
|
||||||
|
" Neovim loaded "
|
||||||
.. stats.loaded
|
.. stats.loaded
|
||||||
.. "/"
|
.. "/"
|
||||||
.. stats.count
|
.. stats.count
|
||||||
|
|||||||
+4
-11
@@ -15,9 +15,13 @@ return {
|
|||||||
{ -- Dial
|
{ -- Dial
|
||||||
import = "lazyvim.plugins.extras.editor.dial",
|
import = "lazyvim.plugins.extras.editor.dial",
|
||||||
},
|
},
|
||||||
|
{ -- Fzf
|
||||||
|
import = "lazyvim.plugins.extras.editor.fzf",
|
||||||
|
},
|
||||||
{ -- Illuminate
|
{ -- Illuminate
|
||||||
import = "lazyvim.plugins.extras.editor.illuminate",
|
import = "lazyvim.plugins.extras.editor.illuminate",
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"akinsho/bufferline.nvim",
|
"akinsho/bufferline.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
@@ -106,17 +110,6 @@ return {
|
|||||||
event = "BufReadPre",
|
event = "BufReadPre",
|
||||||
opts = {},
|
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
|
{ -- DeadColumn
|
||||||
"Bekaboo/deadcolumn.nvim",
|
"Bekaboo/deadcolumn.nvim",
|
||||||
event = "BufEnter",
|
event = "BufEnter",
|
||||||
|
|||||||
Reference in New Issue
Block a user