From 780a18f6271e928ffd117f1880848b794e121ed8 Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Tue, 18 Mar 2025 13:14:50 +0000 Subject: [PATCH] qenya/vscode: rust-analyzer support --- home/qenya/vscode.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/qenya/vscode.nix b/home/qenya/vscode.nix index 14d2420..b9f2ce2 100644 --- a/home/qenya/vscode.nix +++ b/home/qenya/vscode.nix @@ -18,13 +18,17 @@ in jdinhlife.gruvbox jnoortheen.nix-ide matangover.mypy + mkhl.direnv ms-python.black-formatter ms-python.python + rust-lang.rust-analyzer + vadimcn.vscode-lldb ]; mutableExtensionsDir = false; userSettings = { "css.format.spaceAroundSelectorSeparator" = true; "css.format.newlineBetweenSelectors" = false; + "debug.allowBreakpointsEverywhere" = true; "extensions.autoUpdate" = false; "files.insertFinalNewline" = true; "git.autofetch" = true; @@ -40,6 +44,7 @@ in formatting.command = [ "${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt" ]; nix.flake.autoArchive = true; }; + "rust-analyzer.check.command" = "clippy"; "terminal.integrated.allowChords" = false; "terminal.integrated.defaultProfile.linux" = "zsh"; "workbench.colorTheme" = "Gruvbox Dark Medium";