mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Merge 5e57961948 into c64a61734f
This commit is contained in:
commit
a8414f039f
1 changed files with 5 additions and 5 deletions
|
|
@ -5,8 +5,8 @@ pick = function()
|
|||
return vim.cmd("Telescope projects")
|
||||
elseif LazyVim.pick.picker.name == "fzf" then
|
||||
local fzf_lua = require("fzf-lua")
|
||||
local project = require("project_nvim.project")
|
||||
local history = require("project_nvim.utils.history")
|
||||
local project = require("project.api")
|
||||
local history = require("project.utils.history")
|
||||
local results = history.get_recent_projects()
|
||||
local utils = require("fzf-lua.utils")
|
||||
|
||||
|
|
@ -84,14 +84,14 @@ end
|
|||
|
||||
return {
|
||||
{
|
||||
"ahmedkhalf/project.nvim",
|
||||
"DrKJeff16/project.nvim",
|
||||
opts = {
|
||||
manual_mode = true,
|
||||
},
|
||||
event = "VeryLazy",
|
||||
config = function(_, opts)
|
||||
require("project_nvim").setup(opts)
|
||||
local history = require("project_nvim.utils.history")
|
||||
require("project").setup(opts)
|
||||
local history = require("project.utils.history")
|
||||
history.delete_project = function(project)
|
||||
for k, v in pairs(history.recent_projects) do
|
||||
if v == project.value then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue