From 253fa454d32d3f3d76b701b49c359bcec4cfa0a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Pluchart?= Date: Thu, 28 May 2026 10:38:45 +0200 Subject: [PATCH] feat(plugins): remove projects.nvim --- lua/plugins/project.lua | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 lua/plugins/project.lua diff --git a/lua/plugins/project.lua b/lua/plugins/project.lua deleted file mode 100644 index 1938636..0000000 --- a/lua/plugins/project.lua +++ /dev/null @@ -1,27 +0,0 @@ ----@type LazyPluginSpec -return { - 'DrKJeff16/project.nvim', - dependencies = { - 'ibhagwan/fzf-lua', - }, - event = { 'BufReadPre', 'BufNewFile' }, - ---@module "project" - ---@type Project.Config - ---@return Project.Config - opts = function() - local expand = require('project.util').strip_slash - - return { - fzf_lua = { - enabled = false, - show = 'paths', ---@type 'paths'|'names' - sort = 'newest', ---@type 'newest'|'oldest' - }, - custom_projects = { - { path = expand('~/prog/git'), name = 'Prog Git' }, - { path = expand('~/.config/nvim'), name = 'Nvim Config' }, - { path = expand('~/.config/nvim-pack/'), name = 'Nvim Pack Config' }, - }, - } - end, -}