Comparison between current commit and jso-bmarks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1200" height="400" viewBox="0 0 4800 1600"> | |
| <defs> | |
| <clipPath id="clip780"> | |
| <rect x="0" y="0" width="4800" height="1600"/> | |
| </clipPath> | |
| </defs> | |
| <path clip-path="url(#clip780)" d="M0 1600 L4800 1600 L4800 8.88178e-14 L0 8.88178e-14 Z" fill="#ffffff" fill-rule="evenodd" fill-opacity="1"/> | |
| <defs> | |
| <clipPath id="clip781"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if true then | |
| return {} | |
| end | |
| return { | |
| { | |
| "JuliaEditorSupport/julia-vim", | |
| }, | |
| -- configure julia lsp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # stdlib dependencies | |
| using Logging | |
| # external dependencies | |
| using Accessors | |
| # our own dependencies | |
| using GALAHAD | |
| using NLPModels | |
| using SolverCore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ~/.julia/environments/nvim-lspconfig ❯ make 13:12:04 | |
| TMPDIR=/var/folders/0w/gr6q1p614svb9p0gfmlcfjjr0000gn/T/tmp.7cdZBuv5 && \ | |
| cd ${TMPDIR} && \ | |
| JULIA_LOAD_PATH=: /opt/homebrew/bin/julia -e 'using Pkg; Pkg.generate("Example")' 2> /dev/null && \ | |
| cd Example && \ | |
| JULIA_LOAD_PATH=${PWD}:@stdlib /opt/homebrew/bin/julia -e 'using Pkg; Pkg.add(["JSON", "fzf_jll", "Random", "Zlib_jll"])' 2> /dev/null && \ | |
| JULIA_LOAD_PATH=${PWD}:@stdlib /opt/homebrew/bin/julia -e 'using Pkg; Pkg.precompile()' 2> /dev/null && \ | |
| echo "$PACKAGE_CONTENT" > src/Example.jl && \ | |
| JULIA_TRACE_COMPILE=1 /Users/dpo/.local/bin/lvim src/Example.jl && \ | |
| rm -rf ${TMPDIR} |
NewerOlder