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