mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-15 00:21:35 +09:00
15 lines
295 B
Lua
15 lines
295 B
Lua
return {
|
|
{
|
|
"tpope/vim-fugitive", -- git wrapper
|
|
config = function()
|
|
end
|
|
},
|
|
{
|
|
"airblade/vim-gitgutter", -- git modified view;
|
|
config = function()
|
|
vim.g.gitgutter_highlight_lines = 1
|
|
vim.keymap.set({'n', 'v'}, '<F4>', ':GitGutterLineHighlightsToggle<cr>', {})
|
|
end
|
|
},
|
|
}
|