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 = {
|
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";
|
||||||
|
|
Loading…
Reference in a new issue