Compare commits

...

2 Commits

Author SHA1 Message Date
d11be192f2
feat nvim: add diffview 2025-06-09 21:06:14 +08:00
8ac914fd2b
fix nvim: neo-tree on barbar title 2025-06-04 19:45:29 +08:00
2 changed files with 7 additions and 6 deletions

View File

@ -21,12 +21,12 @@ return {
-- separator = {left = '', right = ''}, -- separator = {left = '', right = ''},
}, },
sidebar_filetypes = { sidebar_filetypes = {
['neo-tree'] = { -- ['neo-tree'] = {
event = 'BufWipeout', -- event = 'BufWipeout',
text = ' Explorer', -- -- text = ' Explorer',
align = 'left', -- align = 'left',
-- event = 'BufWinEnter' -- -- event = 'BufWinEnter'
}, -- },
undotree = { undotree = {
text = 'undotree', text = 'undotree',
align = 'center', -- *optionally* specify an alignment (either 'left', 'center', or 'right') align = 'center', -- *optionally* specify an alignment (either 'left', 'center', or 'right')

View File

@ -1,5 +1,6 @@
return { return {
{'akinsho/git-conflict.nvim', version = "*", config = true}, {'akinsho/git-conflict.nvim', version = "*", config = true},
{'sindrets/diffview.nvim'},
{ {
"kdheepak/lazygit.nvim", "kdheepak/lazygit.nvim",
lazy = true, lazy = true,