cambio fugitive por lazyvim
This commit is contained in:
parent
32e2ae1071
commit
c1b9448e81
@ -33,7 +33,13 @@ return require('packer').startup(function(use)
|
|||||||
use("theprimeagen/harpoon")
|
use("theprimeagen/harpoon")
|
||||||
use("theprimeagen/refactoring.nvim")
|
use("theprimeagen/refactoring.nvim")
|
||||||
use("mbbill/undotree")
|
use("mbbill/undotree")
|
||||||
use("tpope/vim-fugitive")
|
use({
|
||||||
|
"kdheepak/lazygit.nvim",
|
||||||
|
-- optional for floating window border decoration
|
||||||
|
requires = {
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
},
|
||||||
|
})
|
||||||
use("nvim-treesitter/nvim-treesitter-context");
|
use("nvim-treesitter/nvim-treesitter-context");
|
||||||
|
|
||||||
use {
|
use {
|
||||||
|
@ -57,3 +57,6 @@ vim.keymap.set("n", "tk", ":bnext<CR>")
|
|||||||
vim.keymap.set("n", "tj", ":bprev<CR>")
|
vim.keymap.set("n", "tj", ":bprev<CR>")
|
||||||
vim.keymap.set("n", "th", ":bfirst<CR>")
|
vim.keymap.set("n", "th", ":bfirst<CR>")
|
||||||
vim.keymap.set("n", "tl", ":blast<CR>")
|
vim.keymap.set("n", "tl", ":blast<CR>")
|
||||||
|
|
||||||
|
-- Lazygit
|
||||||
|
vim.keymap.set("n", "<leader>gg", ":LazyGit<CR>")
|
||||||
|
Loading…
Reference in New Issue
Block a user