Configured Fugitive and Gitsigns

This commit is contained in:
Jellyfishsh 2025-01-22 01:08:56 -08:00
parent 28e5af0624
commit ddd93506fe
5 changed files with 15 additions and 3 deletions

View File

@ -1,8 +1,10 @@
{
"auto-pairs": { "branch": "master", "commit": "39f06b873a8449af8ff6a3eee716d3da14d63a76" },
"gitsigns.nvim": { "branch": "main", "commit": "2ff0c29f2a6b1247d96cc59535d53e5589fb50b6" },
"kanagawa.nvim": { "branch": "master", "commit": "988082eb00b845e4afbcaa4fd8e903da8a3ab3b9" },
"lazy.nvim": { "branch": "main", "commit": "7e6c863bc7563efbdd757a310d17ebc95166cef3" },
"nvim-treesitter": { "branch": "master", "commit": "5da195ac3dfafd08d8b10756d975f0e01e1d563a" },
"plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" },
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" }
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
"vim-fugitive": { "branch": "master", "commit": "d74a7cff4cfcf84f83cc7eccfa365488f3bbabc2" }
}

View File

@ -9,5 +9,5 @@ vim.keymap.set("n", "n", "nzz")
vim.keymap.set("n", "N", "Nzz")
vim.keymap.set("n", "<C-c>", "<nop>")
vim.keymap.set("n", "<leader>y", "\"+y")
vim.keymap.set("n", "<leader>g", vim.cmd.Git)

View File

@ -30,6 +30,6 @@ require("lazy").setup({
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- automatically check for plugin updates
checker = { enabled = true },
checker = { enabled = true, notify = false},
})

View File

@ -0,0 +1,3 @@
return {
"tpope/vim-fugitive"
}

View File

@ -0,0 +1,7 @@
return {
"lewis6991/gitsigns.nvim",
opts = {
auto_attach = true,
}
}