-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup.jl
39 lines (37 loc) · 1.05 KB
/
startup.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Julia (Julialang) REPL startup file
# Should be placed in ~/.julia/config/startup.jl
atreplinit() do repl
@eval using Revise, OhMyREPL
redirect_stdio(stderr=devnull) do
@eval using AbbreviatedStackTraces
end
end
function template()
@eval begin
using PkgTemplates
Template(
user = "abhro",
authors = "Abhro R. and contributors",
dir = joinpath(homedir(), "src"),
host = "github.com",
julia = v"1.10.0",
plugins = [
Citation(),
Codecov(),
CompatHelper(),
Dependabot(),
Documenter{GitHubActions}(),
Git(),
GitHubActions(),
License(name = "MIT"),
PkgBenchmark(),
PkgEvalBadge(),
ProjectFile(version = v"0.0.0-DEV"),
Readme(),
SrcDir(),
TagBot(),
Tests(project = true, aqua = true),
],
)
end
end