julia: startup for windows
This commit is contained in:
parent
8d55de5053
commit
2464e09763
1 changed files with 22 additions and 0 deletions
|
@ -2,3 +2,25 @@
|
|||
# use python installed with scoop instead of conda in windows
|
||||
ENV["PYTHON"] = joinpath(homedir(), raw"scoop\apps\python\current\python.exe")
|
||||
|
||||
try
|
||||
using OhMyREPL
|
||||
catch e
|
||||
@warn "Failed to load OhMyREPL"
|
||||
end
|
||||
try
|
||||
using Revise
|
||||
catch e
|
||||
@warn "Failed to load Revise"
|
||||
end
|
||||
# try
|
||||
# using InteractiveCodeSearch
|
||||
# InteractiveCodeSearch.CONFIG.interactive_matcher = `fzf`
|
||||
# catch e
|
||||
# @warn "Failed to load InteractiveCodeSearch"
|
||||
# end
|
||||
try
|
||||
using AbbreviatedStackTraces
|
||||
catch e
|
||||
@warn "Failed to load AbbreviatedStackTraces"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue