update(nvim): enable inlay_hint for julials
This commit is contained in:
parent
9d1015a48d
commit
b4bf8d3ac2
1 changed files with 4 additions and 1 deletions
|
@ -680,7 +680,10 @@ if julials_so_file then -- if sysimage doesn't exist, julials_so_file == nil
|
||||||
end
|
end
|
||||||
-- main
|
-- main
|
||||||
lspconfig.julials.setup {
|
lspconfig.julials.setup {
|
||||||
on_attach = on_attach,
|
on_attach = function(client, bufnr)
|
||||||
|
on_attach(client, bufnr)
|
||||||
|
vim.lsp.inlay_hint.enable(true, { bufnr = bufnr })
|
||||||
|
end,
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
cmd = { "julia", "--startup-file=no", "--history-file=no",
|
cmd = { "julia", "--startup-file=no", "--history-file=no",
|
||||||
-- julials_so_option[1], julials_so_option[2],
|
-- julials_so_option[1], julials_so_option[2],
|
||||||
|
|
Loading…
Add table
Reference in a new issue