This is a common topic, but I find quite hard to find up to date information online. Indeed, the official wiki is very old.
There are some information in this post and on lspconfig that can be adapted to nvim 0.11 and make it work. Great.
My question is how to configure Julia Formatter inside the LSP. Is this possible without external plugins (e.g. conform)?
I tried to put
settings = {
julia = {
format = {
enable = true,
yas_style_nesting = true,
indent = 4,
},
},
}
in my julials.lua, but I don’t get the desired Yas Style behavior. Does anybody know how to add JuliaFormatter options for vim.lsp.buf.format()
?