Neovim + LanguageServer.jl

neovim/nvim-lspconfig#1153 is merged now so things should work out of the box if you:

  1. Install LanguageServer in the shared environment ~/.julia/environments/nvim-lspconfig:
    $ julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.add("LanguageServer")'
    
  2. Enable it in init.lua:
    require'lspconfig'.julials.setup{}
    
    or init.vim:
    lua << EOF
    require'lspconfig'.julials.setup{}
    EOF
    
16 Likes