From 09eff51488b49c8f9278f8dd32ca0c758867d4c5 Mon Sep 17 00:00:00 2001 From: Yuan Chiu Date: Thu, 1 May 2025 07:33:52 +0800 Subject: [PATCH] nvim: add project.nvim --- .../exact_lua/exact_plugins/exact_components/file.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dot_config/nvim/exact_lua/exact_plugins/exact_components/file.lua diff --git a/dot_config/nvim/exact_lua/exact_plugins/exact_components/file.lua b/dot_config/nvim/exact_lua/exact_plugins/exact_components/file.lua new file mode 100644 index 0000000..afd5e6f --- /dev/null +++ b/dot_config/nvim/exact_lua/exact_plugins/exact_components/file.lua @@ -0,0 +1,10 @@ +return { + "ahmedkhalf/project.nvim", + config = function() + require("project_nvim").setup { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + } + end +}