mochi/.vscode/settings.json

34 lines
966 B
JSON
Raw Permalink Normal View History

2024-07-29 11:05:26 -05:00
{
2024-10-23 21:07:12 -05:00
"editor.fontFamily": "FiraCode Nerd Font",
"editor.hover.delay": 1500,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.guides.highlightActiveBracketPair": true,
"files.trimTrailingWhitespace": true,
2024-11-07 16:58:46 -06:00
"sops.defaults.ageKeyFile": "/home/jahanson/projects/mochi/age.key",
2024-10-23 21:07:12 -05:00
"nix.enableLanguageServer": true,
2024-10-31 07:03:33 -05:00
"nix.serverPath": "/run/current-system/sw/bin/nil",
2024-10-23 21:07:12 -05:00
"nix.formatterPath": "/run/current-system/sw/bin/nixfmt",
"nix.serverSettings": {
2024-10-31 07:03:33 -05:00
"nil": {
2024-10-23 21:07:12 -05:00
"formatting": {
"command": ["nixfmt"]
2024-10-31 07:03:33 -05:00
},
"diagnostics": {
"ignored": [],
"excludedFiles": []
},
},
"nix": {
"binary": "/run/current-system/sw/bin/nix",
"maxMemoryMB": null, // disable memory limit
"flake": {
"autoEvalInputs": true,
"autoArchive": true,
"nixpkgsInputName": "nixpkgs"
2024-10-23 21:07:12 -05:00
}
}
}
2024-07-29 11:05:26 -05:00
}