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"