Initial commit

This commit is contained in:
Asdam9
2026-04-14 22:48:18 +02:00
parent dea140ace7
commit 827124afdb
35 changed files with 3999 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
return {
"vim-fugitive",
after = function()
vim.keymap.set("n", "<leader>gs", vim.cmd.Git)
end
}

View File

@@ -0,0 +1,7 @@
return {
"undotree",
after = function ()
vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle)
vim.g.undotree_UndoDir = ".local/share/nvim/"
end
}