mirror of
https://codeberg.org/qwjyh/dotfiles.git
synced 2025-06-26 19:29:20 +09:00
26 lines
583 B
Julia
26 lines
583 B
Julia
# julia startup file for windows
|
|
# 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
|
|
|