-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
114 lines (111 loc) · 2.8 KB
/
config.sh
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
################################## COMPARISON ##################################
winner_color="91"
loser_color="92"
################################# PROGRESS BAR #################################
bar_size=40
bar_char_done="#"
bar_resolution=1
################################## FILE NAME ##################################
word_separator="_"
rank_separator="-"
declare -A extension_map=(
["agda"]="agda"
["bf"]="b"
["c"]="c"
["cfml"]="cfml"
["clojure"]="clj"
["cobol"]="cbl"
["coffeescript"]="coffee"
["commonlisp"]="lisp"
["coq"]="v"
["cpp"]="cpp"
["crystal"]="cr"
["csharp"]="cs"
["d"]="d"
["dart"]="dart"
["elixir"]="ex"
["elm"]="elm"
["erlang"]="erl"
["factor"]="factor"
["forth"]="4th"
["fortran"]="f95"
["fsharp"]="fs"
["go"]="go"
["groovy"]="groovy"
["haskell"]="hs"
["haxe"]="hx"
["idris"]="idr"
["java"]="java"
["javascript"]="js"
["julia"]="jl"
["kotlin"]="kt"
["lambdacalc"]="lambdacalc"
["lean"]="lean"
["lua"]="lua"
["nasm"]="asm"
["nim"]="nim"
["objc"]="m"
["ocaml"]="ml"
["pascal"]="pas"
["perl"]="pl"
["php"]="php"
["powershell"]="ps1"
["prolog"]="pl"
["purescript"]="purs"
["python"]="py"
["r"]="r"
["racket"]="rkt"
["raku"]="raku"
["reason"]="re"
["riscv"]="riscv"
["ruby"]="rb"
["rust"]="rs"
["scala"]="scala"
["shell"]="sh"
["solidity"]="sol"
["sql"]="sql"
["swift"]="swift"
["typescript"]="ts"
["vb"]="vb"
)
#################################### README ####################################
description_repo="Welcome to my repository for storing my solutions to CodeWars\
katas. The purpose of this repository is to track my progress as I work to \
improve my skills in Python, Elixir, and Rust. Please note that this \
repository is not intended to be used for cheating or copying solutions, but \
rather to showcase my personal progress and learning."
badge_size="large"
table_lang_title="Amount of completed Katas per Language"
table_kyu_title="Amount of completed Katas per Kyu"
#################################### ICONS ####################################
bgcolor="\%23181717"
logocolor="white"
height="35"
logoWidth=""
# The icon is mapped to Codewars icon for languages without simple icons
declare -A iconMap=(
["cpp"]="c%2B%2B"
["groovy"]="apache-groovy"
["shell"]="gnu-bash"
["agda"]="codewars"
["bf"]="codewars"
["cfml"]="codewars"
["cobol"]="codewars"
["commonlisp"]="codewars"
["coq"]="codewars"
["factor"]="codewars"
["forth"]="codewars"
["fsharp"]="codewars"
["idris"]="codewars"
["java"]="codewars"
["lambdacalc"]="codewars"
["lean"]="codewars"
["nasm"]="codewars"
["objc"]="codewars"
["pascal"]="codewars"
["prolog"]="codewars"
["raku"]="codewars"
["riscv"]="codewars"
["sql"]="codewars"
["vb"]="codewars"
)