From f461c9e8f3402824c1dd249457fdacdcd27ad0a3 Mon Sep 17 00:00:00 2001 From: Toast Date: Thu, 16 Nov 2023 00:16:49 +0100 Subject: [PATCH] Vscode: fix mistakes (whoops) --- roles/desktop/programs/vscode.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/desktop/programs/vscode.nix b/roles/desktop/programs/vscode.nix index 2b468cc..4750c54 100644 --- a/roles/desktop/programs/vscode.nix +++ b/roles/desktop/programs/vscode.nix @@ -15,11 +15,11 @@ let inputs = flakeSelf.inputs; in # https://stackoverflow.com/questions/74134436/is-it-possible-to-express-settings-in-vs-codes-settings-json-where-each-dot-sep # TODO: write a function that unnests settings "workbench.colorTheme" = "Catppuccin Mocha"; - "workbench.iconTheme": "catppuccin-mocha" + "workbench.iconTheme" = "catppuccin-mocha"; "editor.fontFamily" = "JetBrainsMono Nerd Font"; "editor.semanticHighlighting.enabled" = true; - "nix.enableLanguageServer = true;" - "nix.serverPath = "${pkgs.nil}/bin/nil";" + "nix.enableLanguageServer" = true; + "nix.serverPath" = "${pkgs.nil}/bin/nil"; "terminal.integrated.minimumContrastRatio" = 1; "window.titleBarStyle" = "custom"; };