From 8d55de5053ce6de0cb21fa693016d28cc827226f Mon Sep 17 00:00:00 2001 From: qwjyh Date: Tue, 31 Oct 2023 18:00:11 +0900 Subject: [PATCH] update startup.jl for linux --- dotfiles/startup_linux.jl | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/dotfiles/startup_linux.jl b/dotfiles/startup_linux.jl index 95208ef..2b8a1aa 100644 --- a/dotfiles/startup_linux.jl +++ b/dotfiles/startup_linux.jl @@ -1,4 +1,28 @@ -using OhMyREPL +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 + +#= + TerminalPager +=# # using JuliaSyntax # # if v"1.9" ≤ VERSION < v"1.10"