1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

chore(vscode): update settings

This commit is contained in:
Ryan Cao 2024-01-31 11:16:20 +08:00
parent 66d54fb717
commit f0f5880362
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E

View file

@ -88,9 +88,9 @@ in {
"git.confirmSync" = false;
"diffEditor.renderSideBySide" = false;
"git.inputValidation" = "off";
"gitlens.showWelcomeOnInstall" = false;
"git.suggestSmartCommit" = false;
"diffEditor.ignoreTrimWhitespace" = false;
"gitlens.showWelcomeOnInstall" = false;
"editor.fontFamily" = "\"RyanMono Nerd Font\", monospace";
"editor.fontLigatures" = true;
@ -161,6 +161,8 @@ in {
"[rust]"."editor.tabSize" = 4;
"[rust]"."editor.defaultFormatter" = "rust-lang.rust-analyzer";
"rust-analyzer.server.path" = "${pkgs.rust-analyzer}/bin/rust-analyzer";
"rust-analyzer.check.command" = "clippy";
"rust-analyzer.showUnlinkedFileNotification" = false;
"files.associations" = {
"*.mcmeta" = "json";
@ -173,13 +175,6 @@ in {
"flake.lock" = "json";
};
"deno.inlayHints.enumMemberValues.enabled" = false;
"deno.inlayHints.functionLikeReturnTypes.enabled" = false;
"deno.inlayHints.parameterNames.enabled" = "none";
"deno.inlayHints.parameterTypes.enabled" = false;
"deno.inlayHints.propertyDeclarationTypes.enabled" = false;
"deno.inlayHints.variableTypes.enabled" = false;
"svelte.enable-ts-plugin" = true;
"clang-format.executable" = "${pkgs.clang-tools}/bin/clang-format";