Move NvimTree file explorer to left side

- Change side from 'right' to 'left' in nvim-tree.lua
  - Update edgy.nvim config to place NvimTree in left panel
This commit is contained in:
2026-02-01 15:47:39 -05:00
parent 7e1c4408bd
commit dc86d0eafc
65 changed files with 3778 additions and 472 deletions

View File

@@ -0,0 +1,57 @@
return {
"lewis6991/satellite.nvim",
event = { "BufReadPost", "BufNewFile" },
opts = {
current_only = false,
winblend = 50,
zindex = 40,
excluded_filetypes = {
"NvimTree",
"neo-tree",
"lazy",
"mason",
"help",
"terminal",
"toggleterm",
"TelescopePrompt",
"alpha",
"dashboard",
"Outline",
"lspsaga",
"spectre_panel",
},
width = 2,
handlers = {
cursor = {
enable = true,
symbols = { "", "", "", "" },
},
search = {
enable = true,
symbols = { "" },
},
diagnostic = {
enable = true,
signs = { "-", "=", "" },
min_severity = vim.diagnostic.severity.HINT,
},
gitsigns = {
enable = true,
signs = {
add = "",
change = "",
delete = "",
},
},
marks = {
enable = true,
show_builtins = false,
key = "m",
},
quickfix = {
enable = true,
signs = { "-", "=", "" },
},
},
},
}