format with stylua

This commit is contained in:
2024-06-06 23:56:11 +02:00
parent d57eca961d
commit ae5b5fd06b
57 changed files with 994 additions and 989 deletions

View File

@ -1,27 +1,27 @@
return {
'TimUntersberger/neogit',
dependencies = {
'nvim-lua/plenary.nvim',
'sindrets/diffview.nvim'
},
config = function()
local neogit = require('neogit')
neogit.setup {
integrations = {
diffview = true,
telescope = false,
fzf_lua = true
},
graph_style = "unicode",
}
end,
keys = {
{
'<space>t',
function()
require('neogit').open()
end
}
},
cmd = { 'Neogit ' }
}
return {
'TimUntersberger/neogit',
dependencies = {
'nvim-lua/plenary.nvim',
'sindrets/diffview.nvim',
},
config = function()
local neogit = require('neogit')
neogit.setup({
integrations = {
diffview = true,
telescope = false,
fzf_lua = true,
},
graph_style = 'unicode',
})
end,
keys = {
{
'<space>t',
function()
require('neogit').open()
end,
},
},
cmd = { 'Neogit ' },
}