feat(nvim): show source selector for neotree in winbar

This commit is contained in:
Price Hiller 2023-05-24 14:31:09 -05:00
parent 0f3e60198d
commit e3c386d6d0
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@ local neotree = require("neo-tree")
vim.g.neo_tree_remove_legacy_commands = 1
neotree.setup({
source_selector = {
winbar = true,
},
filesystem = {
use_libuv_file_watcher = true,
},

View File

@ -76,7 +76,7 @@ lualine.setup({
theme = "auto",
component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" },
disabled_filetypes = { "alpha" },
disabled_filetypes = { "alpha", "neo-tree" },
always_divide_middle = true,
globalstatus = true,
},