Fix vscode config having arrays instead of objects for watcher and normal exclude options
This commit is contained in:
parent
738bdafca7
commit
371cf13fc4
1 changed files with 17 additions and 15 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue