mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
47 lines
1.2 KiB
Lua
47 lines
1.2 KiB
Lua
return {
|
|
{
|
|
"rmagatti/auto-session",
|
|
lazy = false,
|
|
|
|
opts = {
|
|
suppressed_dirs = { "~/", "~/Projects", "~/Downloads", "/" },
|
|
},
|
|
},
|
|
{ import = "plugins.mod.nvim-tree" },
|
|
{ import = "plugins.mod.telescope" },
|
|
{
|
|
"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" },
|
|
},
|
|
},
|
|
}
|