mirror of https://github.com/Flinner/dots.git
25 lines
398 B
Julia
25 lines
398 B
Julia
using Pkg
|
|
if isfile("Project.toml") && isfile("Manifest.toml")
|
|
Pkg.activate(".")
|
|
end
|
|
|
|
|
|
try
|
|
using Revise
|
|
catch e
|
|
@warn "Error initializing Revise" exception=(e, catch_backtrace())
|
|
end
|
|
|
|
try
|
|
using BenchmarkTools
|
|
catch e
|
|
@warn "Error initializing Revise" exception=(e, catch_backtrace())
|
|
end
|
|
|
|
|
|
try
|
|
@eval using OhMyREPL
|
|
catch e
|
|
@warn "error while importing OhMyREPL" e
|
|
end
|