fix: nvim menu create new file

This commit is contained in:
pojok code 2025-06-14 16:17:17 +07:00
parent f3761c699a
commit d41d9b4cf5
5 changed files with 43 additions and 15 deletions

View file

@ -5,7 +5,18 @@ return {
config = function()
require("tiny-inline-diagnostic").setup({
preset = "powerline",
-- signs = {
-- left = "",
-- right = "",
-- diag = "●",
-- arrow = "  ",
-- up_arrow = "  ",
-- vertical = " │",
-- vertical_end = " └",
-- },
blend = {
factor = 0.22,
},
})
vim.diagnostic.config({ virtual_text = false }) -- Only if needed in your configuration, if you already have native LSP diagnostics
end,
}