Skip to content

Instantly share code, notes, and snippets.

@bisraelsen
Created February 20, 2018 22:32
Show Gist options
  • Save bisraelsen/33c33bf43fcd41951966f15e0de52d3d to your computer and use it in GitHub Desktop.
Save bisraelsen/33c33bf43fcd41951966f15e0de52d3d to your computer and use it in GitHub Desktop.
makes julia look for a local .juliarc, useful for loading local modules
if pwd() != ENV["HOME"]
local_rc = joinpath(pwd(),"juliarc.jl")
if isfile(local_rc)
println("Loading Local juliarc.jl file....")
include(local_rc)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment