Select the types of activity you want to include in your feed.
Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins.
git.anhgelus.world/anhgelus/dotfiles
···33The version of these scripts will always be `1.0.0`, because using anything else looks like to be too complicated for
44anything.
5566-## `template.typ`
66+## `template`
7788-This template requires:
88+This package requires:
99- `Inter` as the sans-serif font;
1010- `PT Astra Serif` as the serif font;
1111- `FiraCode Nerd Font Mono` as the monospace font.
12121313-These can be freely used.
1413I may add an option to modify this.
1414+1515+It is the template that I use everywhere.
1616+It can be freely used.
15171618Import it and load it with:
1719```typ
···2729 page_title: "Page title :D",
2830)
2931```
3232+3333+## `callout`
3434+3535+This package contains my callouts.
3636+3737+List of callouts:
3838+- `warning`
3939+- `defn` (definition)
4040+- `props` (proposition)
4141+- `thm` (théorème, which is theorem in French)
4242+4343+Import it and load it with:
4444+```typ
4545+// import the script from the local repo
4646+// if you have modified the repo name, replace `@local` with their name
4747+#import "@local/callout:1.0.0": *
4848+```
4949+5050+You can use any callouts with
5151+```typ
5252+#defn[
5353+ Let $f$ a function where:
5454+ $ forall x in RR, f(x) = x^2 $
5555+]
5656+```