Last active
March 23, 2024 07:00
-
-
Save gdalle/d6c94d326e6eded509fa4cde2380ee71 to your computer and use it in GitHub Desktop.
Julia startup file
This file contains 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
try | |
@eval using Revise | |
catch e | |
@warn "Error during startup imports" e | |
end | |
atreplinit() do repl | |
try | |
@eval using OhMyREPL | |
@eval using AbbreviatedStackTraces | |
catch e | |
@warn "Error during startup imports" e | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment