mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 07:45:18 +00:00
* chore(nvim): remove astronvim and configs * feat(nvim): new, custom nvim configuration
15 lines
323 B
Lua
15 lines
323 B
Lua
return {
|
|
{
|
|
"jay-babu/project.nvim",
|
|
name = "project_nvim",
|
|
event = "VeryLazy",
|
|
opts = { ignore_lsp = { "lua_ls" } },
|
|
},
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
optional = true,
|
|
dependencies = { "project_nvim" },
|
|
opts = function() require("telescope").load_extension("projects") end,
|
|
},
|
|
}
|