mochi/.vscode/settings.json

45 lines
1.3 KiB
JSON
Raw Normal View History

2024-07-29 11:05:26 -05:00
{
2024-12-10 14:25:37 -06:00
"editor.fontFamily": "CaskaydiaMono Nerd Font Mono",
2024-11-17 11:03:08 -06:00
"files.associations": {
2024-12-10 14:25:37 -06:00
"*.json5": "jsonc"
2024-11-17 11:03:08 -06:00
},
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,
2025-01-03 11:43:06 -06:00
"sops.defaults.ageKeyFile": "age.key",
2024-10-23 21:07:12 -05:00
"nix.enableLanguageServer": true,
2024-12-09 20:42:56 -06:00
"nix.serverPath": "/run/current-system/sw/bin/nil",
"nix.formatterPath": "/run/current-system/sw/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": []
2024-12-10 14:25:37 -06:00
}
2024-10-31 07:03:33 -05:00
},
"nix": {
2024-12-09 20:42:56 -06:00
"binary": "/run/current-system/sw/bin/nix",
2024-12-10 14:25:37 -06:00
"maxMemoryMB": null,
2024-10-31 07:03:33 -05:00
"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-11-19 21:18:13 -06:00
},
2025-01-03 11:43:06 -06:00
"sops.binPath": "/run/current-system/sw/bin/sops",
2025-01-04 17:39:46 -06:00
"editor.formatOnSave": true,
"bashIde.explainshellEndpoint": "http://localhost:5000",
"bashIde.shellcheckPath": "/run/current-system/sw/bin/shellcheck",
"bashIde.shfmt.path": "/run/current-system/sw/bin/shfmt"
2024-07-29 11:05:26 -05:00
}