Changed typst config

This commit is contained in:
Timo Boomers 2025-05-16 14:27:55 +02:00
parent a79b1b7281
commit 8ecf066196
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:GWI1hq+MNKR2UOcvk7n9tekASXT8vyazK7vDF9Xyciw
4 changed files with 5 additions and 0 deletions

View File

@ -93,6 +93,7 @@
"home-assistant.local.tbmrs.nl"
"karakeep.local.tbmrs.nl"
"vikunja.local.tbmrs.nl"
"mail.tbmrs.nl"
];
};

View File

@ -33,6 +33,7 @@
applications.yazi.enable = true;
applications.zellij.enable = true;
applications.wezterm.enable = true;
applications.typst.enable = true;
services.nextcloud-sync.enable = true;

View File

@ -94,6 +94,8 @@ in {
editor.cursor-shape = {
insert = "bar";
};
editor.end-of-line-diagnostics = "hint";
editor.inline-diagnostics.cursor-line = "error";
};
languages = {
# Rust

View File

@ -18,6 +18,7 @@ in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
unstable.typst
unstable.typst-live
];
};
}