Files
dotfiles/nvim/lua/plugins/project.lua
2024-09-02 11:47:52 +02:00

13 lines
345 B
Lua

return {
"ahmedkhalf/project.nvim",
lazy = false,
config = function()
require("telescope").load_extension "projects"
require("project_nvim").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
end,
}