From: Huck Boles Date: Sun, 6 Aug 2023 15:40:04 +0000 (-0700) Subject: added: julia tools X-Git-Url: https://git.huck.website/?a=commitdiff_plain;h=ad533b30cbbc8aab71c9b4e80e94ea505abc5153;p=nvim.git added: julia tools --- diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 90ed572..8098909 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -74,6 +74,7 @@ return { lsp.html.setup({ on_attach = keybinds }) lsp.lua_ls.setup({ on_attach = keybinds }) lsp.solargraph.setup({ on_attach = keybinds }) + lsp.julials.setup({ on_attach = keybinds }) -- diagnostic settings vim.lsp.diagnostics = { @@ -172,4 +173,8 @@ return { }) end }, + { + 'JuliaEditorSupport/julia-vim', + event = { "BufReadPost *.jl" } + }, }