This commit is contained in:
Alexander Navarro 2023-03-06 19:57:24 -03:00
parent f3c1524c2d
commit 3afa9900ce
9 changed files with 63 additions and 33 deletions

View file

@ -23,6 +23,7 @@ return {
},
window = {
width = 30,
auto_expand_width = true,
mappings = {
["<2-LeftMouse>"] = "open_with_window_picker",
["<cr>"] = "open_with_window_picker",
@ -88,10 +89,10 @@ return {
renderers = {
file = {
{ "icon" },
{ "name", use_git_status_colors = true },
{ "name", use_git_status_colors = true },
{ "harpoon_index" }, --> This is what actually adds the component in where you want it
{ "diagnostics" },
{ "git_status", highlight = "NeoTreeDimText" },
{ "git_status", highlight = "NeoTreeDimText" },
},
},
window = {
@ -129,6 +130,8 @@ return {
if vim.bo.filetype == "neo-tree" then
vim.wo.signcolumn = "auto"
end
vim.cmd("highlight! Cursor blend=100")
end,
},
{