Skip to content

Commit

Permalink
feat: Add's vgit
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecollier committed Nov 9, 2023
1 parent 067e31d commit eab3fc3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions neovim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ vim.keymap.set("n", "<right>", function() vim.cmd("tabp") end)

require("lazy").setup({
{
{
'tanvirtin/vgit.nvim',
dependencies = {
'nvim-lua/plenary.nvim'
},
config = function()
vim.o.updatetime = 300
vim.o.incsearch = false
vim.wo.signcolumn = 'yes'
require('vgit').setup()
end
},
'christoomey/vim-tmux-navigator',
'roxma/vim-tmux-clipboard',
'tmux-plugins/vim-tmux-focus-events',
Expand Down

0 comments on commit eab3fc3

Please sign in to comment.