diff --git a/lua/plugins/git.lua b/lua/plugins/git.lua new file mode 100644 index 0000000..1625420 --- /dev/null +++ b/lua/plugins/git.lua @@ -0,0 +1,9 @@ +return { + { 'tpope/vim-fugitive', lazy = true }, + { + 'lewis6991/gitsigns.nvim', + config = function() + require('gitsigns').setup({}) + end + }, +}