mochi/.vscode/settings.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2024-07-29 11:05:26 -05:00
{
2024-10-23 21:07:12 -05:00
"editor.fontFamily": "FiraCode Nerd Font",
2024-11-17 11:03:08 -06:00
"files.associations": {
"*.json5": "jsonc",
},
2024-10-23 21:07:12 -05:00
"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-11-15 16:42:57 -06:00
"nix.serverPath": "/home/jahanson/.nix-profile/bin/nil",
"nix.formatterPath": "/home/jahanson/.nix-profile/bin/nixfmt",
2024-10-23 21:07:12 -05:00
"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": {
2024-11-15 16:42:57 -06:00
"binary": "/nix/var/nix/profiles/default/bin/nix",
2024-10-31 07:03:33 -05:00
"maxMemoryMB": null, // disable memory limit
"flake": {
"autoEvalInputs": true,
"autoArchive": true,
"nixpkgsInputName": "nixpkgs"
2024-10-23 21:07:12 -05:00
}
}
2024-11-17 11:03:08 -06:00
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
2024-10-23 21:07:12 -05:00
}
2024-07-29 11:05:26 -05:00
}