update startup.jl for linux
This commit is contained in:
parent
4432fd2ea5
commit
8d55de5053
1 changed files with 25 additions and 1 deletions
|
@ -1,4 +1,28 @@
|
||||||
|
try
|
||||||
using OhMyREPL
|
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
|
# using JuliaSyntax
|
||||||
#
|
#
|
||||||
# if v"1.9" ≤ VERSION < v"1.10"
|
# if v"1.9" ≤ VERSION < v"1.10"
|
||||||
|
|
Loading…
Reference in a new issue