non important commit

This commit is contained in:
Jiří Maxmilián Stříbrný 2026-03-18 13:06:35 +01:00
parent 8b12505bf9
commit 6b75072cba
2 changed files with 40 additions and 28 deletions

View file

@ -15,6 +15,7 @@
default = pkgs.mkShell {
buildInputs = with pkgs; [
typst
tinymist
];
};
};

View file

@ -8,42 +8,43 @@
pkgs.alejandra
];
settings = {
editor = {
indent-guides.render = true;
cursorline = true;
color-modes = true;
line-number = "relative";
settings.editor = {
indent-guides.render = true;
cursorline = true;
color-modes = true;
line-number = "relative";
lsp = {
display-inlay-hints = true;
display-messages = true;
};
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
clipboard-provider = "wayland";
statusline = {
left = ["mode" "spinner" "file-name" "file-modification-indicator"];
center = ["workspace-diagnostics"];
right = ["diagnostics" "selections" "position" "file-encoding" "file-type"];
};
auto-pairs = true;
file-picker.hidden = false;
mouse = false;
lsp = {
display-inlay-hints = true;
display-messages = true;
};
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
clipboard-provider = "wayland";
statusline = {
left = ["mode" "spinner" "file-name" "file-modification-indicator"];
center = ["workspace-diagnostics"];
right = ["diagnostics" "selections" "position" "file-encoding" "file-type"];
};
auto-pairs = true;
file-picker.hidden = false;
mouse = false;
};
languages = {
language-server = {
nil.command = "nil";
marksman.command = "marksman";
tinymist.command = "tinymist";
pyright = {
command = "pyright-langserver";
args = ["--stdio"];
@ -85,6 +86,16 @@
auto-format = true;
language-servers = ["omnisharp"];
}
{
name = "markdown";
autoformat = true;
language-servers = ["marksman"];
}
{
name = "typst";
autoformat = true;
language-servers = ["tinymist"];
}
];
};
};