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,59 @@
return {
"rachartier/tiny-inline-diagnostic.nvim",
event = "LspAttach",
priority = 1000,
config = function()
-- Disable default diagnostics virtual text and auto float
vim.diagnostic.config({
virtual_text = false,
float = false, -- Disable automatic float, use manual <leader>sl instead
signs = true,
underline = true,
update_in_insert = false,
})
require("tiny-inline-diagnostic").setup({
signs = {
left = "",
right = "",
diag = "",
arrow = " ",
up_arrow = " ",
vertical = "",
vertical_end = "",
},
hi = {
error = "DiagnosticError",
warn = "DiagnosticWarn",
info = "DiagnosticInfo",
hint = "DiagnosticHint",
arrow = "NonText",
background = "CursorLine",
mixing_color = "None",
},
blend = {
factor = 0.22,
},
options = {
show_source = true,
throttle = 20,
softwrap = 30,
multiple_diag_under_cursor = true,
multilines = true,
show_all_diags_on_cursorline = false,
enable_on_insert = false,
overflow = {
mode = "wrap",
},
format = nil,
break_line = {
enabled = false,
after = 30,
},
virt_texts = {
priority = 2048,
},
},
})
end,
}