Remove several extensions and add typescript-tools along with conform and format-ts-errors (could be better but is the best I found)
9 lines
266 B
Lua
9 lines
266 B
Lua
return {
|
|
"davidosomething/format-ts-errors.nvim",
|
|
config = function()
|
|
require("format-ts-errors").setup({
|
|
add_markdown = true, -- wrap output with markdown ```ts ``` markers
|
|
start_indent_level = 1, -- initial indent
|
|
})
|
|
end,
|
|
}
|