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.