[NeoVim] Remove neo-tree's fading

This commit is contained in:
2022-07-08 19:44:55 +02:00
parent 94428c4747
commit 176e5dd276

View File

@@ -89,6 +89,30 @@ require('neo-tree').setup({
["fg"] = function() vim.cmd([[Telescope live_grep]]) end
}
}
},
renderers = {
directory = {
{ "indent" },
{ "icon" },
{ "current_filter" },
{ "name" },
{ "clipboard" },
{ "diagnostics", errors_only = true }
},
file = {
{ "indent" },
{ "icon" },
{
"name",
use_git_status_colors = true,
zindex = 10
},
{ "clipboard" },
{ "bufnr" },
{ "modified" },
{ "diagnostics" },
{ "git_status" }
}
}
})
vim.keymap.set("n", "f", "<cmd>Neotree focus<CR>", opts)