dotfiles/tools/nvim/lua/plugins/fileutils.lua
2025-03-07 15:02:52 +00:00

51 lines
1.3 KiB
Lua

return {
{
"rmagatti/auto-session",
lazy = false,
opts = {
suppressed_dirs = { "~/", "~/Projects", "~/Downloads", "/" },
},
},
{ import = "plugins.mod.nvim-tree" },
{ import = "plugins.mod.telescope" },
-- { import = "plugins.mod.fzf" },
{
"ahmedkhalf/project.nvim",
opts = {
detection_methods = { "lsp", "pattern" },
patterns = { ".git", "Makefile", "package.json" },
sync_root_with_cwd = true,
silent_chdir = true,
scope_chdir = "global",
},
config = function()
require("telescope").load_extension("projects")
end,
dependencies = { "nvim-telescope/telescope.nvim" },
},
{ import = "plugins.mod.hover-nvim" },
-- {
-- "kdheepak/lazygit.nvim",
-- lazy = true,
-- cmd = {
-- "LazyGit",
-- "LazyGitConfig",
-- "LazyGitCurrentFile",
-- "LazyGitFilter",
-- "LazyGitFilterCurrentFile",
-- },
-- -- optional for floating window border decoration
-- dependencies = {
-- "nvim-lua/plenary.nvim",
-- },
-- -- setting the keybinding for LazyGit with 'keys' is recommended in
-- -- order to load the plugin when the command is run for the first time
-- keys = {
-- { "<leader>gg", "<cmd>LazyGit<cr>", desc = "LazyGit" },
-- },
-- },
{
"NeogitOrg/neogit"
}
}