]> git.huck.website - nvim.git/commitdiff
added: julia tools
authorHuck Boles <huck@huck.website>
Sun, 6 Aug 2023 15:40:04 +0000 (08:40 -0700)
committerHuck Boles <huck@huck.website>
Sun, 6 Aug 2023 15:40:04 +0000 (08:40 -0700)
lua/plugins/lsp.lua

index 90ed57227dd4ba4b60914e729e56ff44784af746..8098909ae71285d21a788e34ad6ca818947806f3 100644 (file)
@@ -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" }
+    },
 }