nvim: add project.nvim & telescope

This commit is contained in:
Yuan Chiu 2025-05-01 08:18:01 +08:00
parent 09eff51488
commit 883103e2e6
2 changed files with 16 additions and 1 deletions

View File

@ -1,5 +1,14 @@
-- if true then return {} end
return { return {
"ahmedkhalf/project.nvim", -- 會自動cd到專案目錄
-- "ahmedkhalf/project.nvim",
-- 使用修改版的project.nvim
-- 因為此套件會噴警告,原作者已經沒再維護了
-- vim.lsp.buf_get_clients() is deprecated. Run ":checkhealth vim.deprecated" for more information
"Spelis/project.nvim",
branch = "patch-1",
config = function() config = function()
require("project_nvim").setup { require("project_nvim").setup {
-- your configuration comes here -- your configuration comes here

View File

@ -0,0 +1,6 @@
-- if true then return {} end
return {
-- 'nvim-telescope/telescope.nvim', tag = '0.1.8',
'nvim-telescope/telescope.nvim', branch = '0.1.x',
dependencies = { 'nvim-lua/plenary.nvim' }
}