feat(tea): use tea
This commit is contained in:
parent
d5279a25d2
commit
5106c4afb5
6 changed files with 56 additions and 48 deletions
|
|
@ -60,6 +60,30 @@ local git_status = new_git_status()
|
|||
local synctex_pdf = {}
|
||||
|
||||
return {
|
||||
{
|
||||
'barrettruth/diffs.nvim',
|
||||
enabled = true,
|
||||
before = function()
|
||||
vim.g.diffs = {
|
||||
debug = false,
|
||||
integrations = { fugitive = true },
|
||||
extra_filetypes = { 'diff' },
|
||||
hide_prefix = true,
|
||||
highlights = {
|
||||
gutter = true,
|
||||
vim = {
|
||||
enabled = true,
|
||||
-- max_lines = 500,
|
||||
},
|
||||
-- treesitter = { max_lines = 10 },
|
||||
intra = {
|
||||
enabled = true,
|
||||
max_lines = 500,
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
'barrettruth/midnight.nvim',
|
||||
enabled = true,
|
||||
|
|
@ -154,6 +178,9 @@ return {
|
|||
before = function()
|
||||
vim.g.pending = {
|
||||
debug = false,
|
||||
sync = {
|
||||
s3 = { bucket = 'pending.nvim', region = 'us-east-1' },
|
||||
},
|
||||
data_path = (
|
||||
os.getenv('XDG_STATE_HOME')
|
||||
or (os.getenv('HOME') .. '/.local/state')
|
||||
|
|
|
|||
|
|
@ -218,30 +218,3 @@ end)
|
|||
vim.keymap.set('n', '<leader>gp', function()
|
||||
forge_picker('pr', 'all')
|
||||
end)
|
||||
|
||||
return {
|
||||
{
|
||||
'barrettruth/diffs.nvim',
|
||||
enabled = true,
|
||||
before = function()
|
||||
vim.g.diffs = {
|
||||
debug = false,
|
||||
integrations = { fugitive = true },
|
||||
extra_filetypes = { 'diff' },
|
||||
hide_prefix = false,
|
||||
highlights = {
|
||||
-- blend_alpha = 0.9,
|
||||
gutter = true,
|
||||
vim = {
|
||||
enabled = true,
|
||||
max_lnes = 500,
|
||||
},
|
||||
intra = {
|
||||
enabled = true,
|
||||
max_lines = 500,
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue