Fix vscode config having arrays instead of objects for watcher and normal exclude options

This commit is contained in:
Tyler Beckman 2024-11-22 14:14:54 -07:00
parent 738bdafca7
commit 371cf13fc4
Signed by: Ty
GPG key ID: 2813440C772555A4

View file

@ -24,22 +24,24 @@
userSettings = { userSettings = {
# Editor # Editor
"editor.fontFamily" = "'FiraCode Nerd Font Mono', 'Droid Sans Mono', 'monospace', monospace"; "editor.fontFamily" = "'FiraCode Nerd Font Mono', 'Droid Sans Mono', 'monospace', monospace";
"editor.indentSize" = "tabSize";
"editor.tabSize" = 4;
# JJ # JJ
"files.watcherExclude" = [ "files.watcherExclude" = {
"**/.git/objects/**" "**/.git/objects/**" = true;
"**/.git/subtree-cache/**" "**/.git/subtree-cache/**" = true;
"**/.hg/store/**" "**/.hg/store/**" = true;
"**/.jj" "**/.jj" = true;
]; };
"files.exclude" = [ "files.exclude" = {
"**/.git" "**/.git" = true;
"**/.jj" "**/.jj" = true;
"**/.svn" "**/.svn" = true;
"**/.hg" "**/.hg" = true;
"**/CVS" "**/CVS" = true;
"**/.DS_Store" "**/.DS_Store" = true;
"**/Thumbs.db" "**/Thumbs.db" = true;
]; };
# Nix # Nix
"nix.enableLanguageServer" = true; "nix.enableLanguageServer" = true;
"nix.serverPath" = "nixd"; "nix.serverPath" = "nixd";