From f93b29eb14c4b87b7c4a522e42c6b76f74c74612 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Tue, 16 May 2023 23:27:58 +0200 Subject: [PATCH] Fix VSCode config --- home/christoph/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/christoph/default.nix b/home/christoph/default.nix index 3273e8d9..a464a0af 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -696,14 +696,14 @@ rec { "editor.smoothScrolling" = true; "editor.stickyScroll.enabled" = true; "editor.tabCompletion" = "on"; - "editor.cursorSmoothCaretAnimation" = true; + "editor.cursorSmoothCaretAnimation" = "on"; "editor.cursorSurroundingLines" = 10; "editor.minimap.renderCharacters" = false; "files.trimFinalNewlines" = true; "files.trimTrailingWhitespace" = true; # NOTE: If this is enabled with frequent autosave, the current lines whitespace will always be removed, which is obnoxious "workbench.enableExperiments" = false; "workbench.list.smoothScrolling" = true; - "workbench.colorTheme" = "Default Light+"; + "workbench.colorTheme" = "Default Light Modern"; "workbench.iconTheme" = "vscode-icons"; "security.workspace.trust.enabled" = false; "editor.bracketPairColorization.enabled" = true;