move: neovim: moved julials related(update, setup) scripts

This commit is contained in:
qwjyh 2023-10-06 18:20:41 +09:00
parent a4f74fc80a
commit 9e255a4477
3 changed files with 0 additions and 0 deletions

7
bin/neovim/update_julials.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/bash -x
cd ~/.julia/environments/nvim-lspconfig/ || return 1
julia --project=. -e 'using Pkg; Pkg.update()'
cat precompile_exec_head.jl tracecompile.jl > precompile_exec.jl
julia --project=. -e 'using PackageCompiler; create_sysimage(["LanguageServer"], sysimage_path="sys-ls.so", precompile_execution_file=["precompile_exec.jl"])'
julia --project=. -J sys-ls.so -e 'using Pkg; Pkg.precompile()'