From 2464e0976354440b5ec65174914aa133fcbd4652 Mon Sep 17 00:00:00 2001 From: qwjyh Date: Tue, 31 Oct 2023 19:15:28 +0900 Subject: [PATCH] julia: startup for windows --- dotfiles/startup_windows.jl | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dotfiles/startup_windows.jl b/dotfiles/startup_windows.jl index 5cb4982..1381b51 100644 --- a/dotfiles/startup_windows.jl +++ b/dotfiles/startup_windows.jl @@ -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 +