This commit is contained in:
Jose Storopoli 2024-11-03 16:41:47 +01:00 committed by GitHub
commit bdb59c3c9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,34 @@
return {
recommended = function()
return LazyVim.extras.wants({
ft = { "julia" },
root = { "Project.toml" },
})
end,
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "julia" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
julials = {
settings = {
-- use the same default settings as the Julia VS Code extension
julia = {
completionmode = "qualify",
lint = { missingrefs = "none" },
inlayHints = {
static = {
enabled = false,
variableTypes = { enabled = true },
},
},
},
},
},
},
},
},
}