Some updates to fugitive, remove ds store, blank spaces.

This commit is contained in:
calcu1on 2025-03-30 22:53:25 -04:00
parent 52a70c595f
commit ed65d752c6
3 changed files with 10 additions and 4 deletions

BIN
lua/plugins/.DS_Store vendored

Binary file not shown.

View File

@ -1,3 +1,9 @@
return { return {
"tpope/vim-fugitive" "tpope/vim-fugitive",
config = function()
vim.keymap.set("n", "<leader>gs", "<cmd>Git<CR>")
vim.keymap.set("n", "<leader>gvd", "<cmd>Gvdiff<CR>")
vim.keymap.set("n", "<leader>gc", "<cmd>Git commit<CR>")
vim.keymap.set("n", "<leader>gp", "<cmd>Git push<CR>")
end
} }