AutoYADM commit: 2025-01-13 20:25:05

This commit is contained in:
Daniel Fichtinger 2025-01-13 20:25:05 -05:00
parent 131b2f2814
commit f37cacf40a
2 changed files with 19 additions and 2 deletions

View file

@ -21,6 +21,9 @@ vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = " "
vim.g.maplocalleader = ","
vim.keymap.set("n", "<C-q>", "<CMD>qa!<Cr>")
vim.keymap.set("n", "<leader>gg", "<CMD>Neogit<Cr>")
-- Setup lazy.nvim
require("lazy").setup({
spec = {
@ -28,6 +31,17 @@ require("lazy").setup({
{
dir = "~/dev/plugins/ashen.nvim/",
},
{
"NeogitOrg/neogit",
dependencies = {
"nvim-lua/plenary.nvim", -- required
"sindrets/diffview.nvim", -- optional - Diff integration
-- Only one of these is needed.
"ibhagwan/fzf-lua", -- optional
},
config = true,
},
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.

View file

@ -1,4 +1,7 @@
{
"ashen.nvim": { "branch": "main", "commit": "e42fb457ba4cd9697667153c7307c09a6ce44785" },
"lazy.nvim": { "branch": "main", "commit": "d8f26efd456190241afd1b0f5235fe6fdba13d4a" }
"diffview.nvim": { "branch": "main", "commit": "4516612fe98ff56ae0415a259ff6361a89419b0a" },
"fzf-lua": { "branch": "main", "commit": "6f7249741168c0751356e3b6c5c1e3bade833b6b" },
"lazy.nvim": { "branch": "main", "commit": "d8f26efd456190241afd1b0f5235fe6fdba13d4a" },
"neogit": { "branch": "master", "commit": "a1fc4e50fa494e04097cf2d02e86bcd7ac5760d6" },
"plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" }
}