From ca655a6c26ed68c4c0fed723668506e23fa29607 Mon Sep 17 00:00:00 2001 From: "Reid \"reidlab" Date: Mon, 13 May 2024 20:31:13 -0700 Subject: [PATCH] vscode smooth scrolling --- modules/software/editors/vscode.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/software/editors/vscode.nix b/modules/software/editors/vscode.nix index f2ade51..60e0785 100644 --- a/modules/software/editors/vscode.nix +++ b/modules/software/editors/vscode.nix @@ -34,6 +34,7 @@ in { "terminal.integrated.fontFamily" = "\"${monospace.family}\""; "terminal.integrated.fontSize" = monospace.size; + "terminal.integrated.smoothScrolling" = true; "telemetry.telemetryLevel" = "off"; @@ -44,6 +45,7 @@ in { "window.titleBarStyle" = "custom"; "workbench.tips.enabled" = false; + "workbench.list.smoothScrolling" = true; "nix.enableLanguageServer" = true; "nix.serverPath" = "${lib.getExe pkgs.nil}";