|
|
@@ -30,16 +30,16 @@ return {
|
|
|
opts = {
|
|
|
groups = {
|
|
|
left = {
|
|
|
- { icon = "", titles = { "Neo-Tree", "Neo-Tree Buffers" } },
|
|
|
- { icon = "", titles = { "Neo-Tree Git" } },
|
|
|
- { icon = "", titles = { "Outline" } },
|
|
|
+ { icon = "", titles = { "Files", "Git" } },
|
|
|
+ -- { icon = "", titles = { "Git" } },
|
|
|
+ -- { icon = "", titles = { "Outline" } },
|
|
|
},
|
|
|
},
|
|
|
statusline = {
|
|
|
-- suffix and prefix separators between icons
|
|
|
separators = { ' ', ' ' },
|
|
|
clickable = false, -- open group on click
|
|
|
- colored = false, -- enable highlight support
|
|
|
+ colored = true, -- enable highlight support
|
|
|
colors = { -- highlight colors
|
|
|
active = 'Normal', -- highlight color for open group
|
|
|
inactive = 'Normal', -- highlight color for closed group
|
|
|
@@ -96,7 +96,7 @@ return {
|
|
|
},
|
|
|
left = {
|
|
|
{
|
|
|
- title = "Neo-Tree",
|
|
|
+ title = "Files",
|
|
|
ft = "neo-tree",
|
|
|
filter = function(buf)
|
|
|
return vim.b[buf].neo_tree_source == "filesystem"
|
|
|
@@ -105,7 +105,7 @@ return {
|
|
|
open = "Neotree position=left filesystem",
|
|
|
},
|
|
|
{
|
|
|
- title = "Neo-Tree Buffers",
|
|
|
+ title = "Buffers",
|
|
|
ft = "neo-tree",
|
|
|
filter = function(buf)
|
|
|
return vim.b[buf].neo_tree_source == "buffers"
|
|
|
@@ -113,13 +113,15 @@ return {
|
|
|
open = "Neotree position=top buffers",
|
|
|
},
|
|
|
{
|
|
|
- title = "Neo-Tree Git",
|
|
|
+ title = "Git",
|
|
|
ft = "neo-tree",
|
|
|
filter = function(buf)
|
|
|
return vim.b[buf].neo_tree_source == "git_status"
|
|
|
end,
|
|
|
open = "Neotree position=right git_status",
|
|
|
},
|
|
|
+ },
|
|
|
+ right = {
|
|
|
{
|
|
|
ft = "Outline",
|
|
|
open = "SymbolsOutlineOpen",
|
|
|
@@ -209,7 +211,7 @@ return {
|
|
|
-- Setting to `true`, will add an edgy winbar.
|
|
|
-- Setting to `false`, won't set any winbar.
|
|
|
-- Setting to a string, will set the winbar to that string.
|
|
|
- winbar = true,
|
|
|
+ winbar = false,
|
|
|
winfixwidth = true,
|
|
|
winfixheight = false,
|
|
|
winhighlight = "WinBar:EdgyWinBar,Normal:EdgyNormal",
|