2022-05-11 21:28:41 +00:00
|
|
|
{
|
|
|
|
/* VS Code editor settings. */
|
|
|
|
"editor.colorDecorators": false,
|
|
|
|
"editor.cursorBlinking": "smooth",
|
|
|
|
"editor.fontFamily": "Hasklig",
|
|
|
|
"editor.fontLigatures": true,
|
|
|
|
"editor.fontSize": 18,
|
|
|
|
"editor.minimap.maxColumn": 100,
|
|
|
|
"editor.multiCursorModifier": "ctrlCmd",
|
|
|
|
"editor.renderWhitespace": "boundary",
|
|
|
|
"editor.rulers": [
|
|
|
|
80,
|
|
|
|
100
|
|
|
|
],
|
|
|
|
"editor.suggestSelection": "first",
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
"editor.wordWrapColumn": 100,
|
|
|
|
/* VS Code explorer settings. */
|
|
|
|
"explorer.confirmDelete": false,
|
|
|
|
"explorer.confirmDragAndDrop": false,
|
|
|
|
"explorer.sortOrder": "type",
|
|
|
|
/* VS Code extensions settings. */
|
2022-10-30 10:58:14 +00:00
|
|
|
"extensions.autoCheckUpdates": false,
|
|
|
|
"extensions.autoUpdate": false,
|
2022-05-11 21:28:41 +00:00
|
|
|
"extensions.ignoreRecommendations": true,
|
|
|
|
/* VS Code files settings. */
|
|
|
|
"files.associations": {
|
2022-09-30 11:40:22 +00:00
|
|
|
"*.njk": "html",
|
2022-09-24 20:36:23 +00:00
|
|
|
"*.sql": "sql",
|
|
|
|
"*.yml": "yaml"
|
2022-05-11 21:28:41 +00:00
|
|
|
},
|
|
|
|
"files.eol": "\n",
|
|
|
|
"files.exclude": {
|
|
|
|
"**/.mypy_cache": true,
|
|
|
|
"**/.pytest_cache": true,
|
|
|
|
"**/__pycache__": true,
|
|
|
|
"**/node_modules": true,
|
|
|
|
"**/target": true
|
|
|
|
},
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.watcherExclude": {
|
|
|
|
"**/.git/objects/**": true,
|
|
|
|
"**/.git/subtree-cache/**": true,
|
|
|
|
"**/node_modules/*/**": true,
|
|
|
|
"**/target/**": true
|
|
|
|
},
|
|
|
|
/* VS Code HTML settings. */
|
|
|
|
"html.format.wrapLineLength": 80,
|
|
|
|
"html.validate.styles": false,
|
|
|
|
/* VS Code search settings. */
|
|
|
|
"search.showLineNumbers": true,
|
|
|
|
/* VS Code TypeScript settings. */
|
2022-10-30 10:58:14 +00:00
|
|
|
"typescript.disableAutomaticTypeAcquisition": true,
|
2022-05-11 21:28:41 +00:00
|
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
2022-10-30 10:58:14 +00:00
|
|
|
/* VS Code update settings. */
|
|
|
|
"update.mode": "none",
|
|
|
|
"update.showReleaseNotes": false,
|
2022-05-11 21:28:41 +00:00
|
|
|
/* VS Code window settings. */
|
|
|
|
"window.titleBarStyle": "custom",
|
|
|
|
/* VS Code workbench settings. */
|
2023-03-21 11:30:04 +00:00
|
|
|
"workbench.colorTheme": "Catppuccin Mocha",
|
2022-10-30 10:58:14 +00:00
|
|
|
"workbench.enableExperiments": false,
|
|
|
|
"workbench.editSessions.autoResume": "off",
|
|
|
|
"workbench.editSessions.continueOn": "off",
|
2023-03-21 11:30:04 +00:00
|
|
|
"workbench.iconTheme": "catppuccin-mocha",
|
2022-05-11 21:28:41 +00:00
|
|
|
"workbench.startupEditor": "none",
|
|
|
|
/* Extension settings. */
|
|
|
|
// Colorize (ID: kamikillerto.vscode-colorize).
|
|
|
|
"colorize.languages": [
|
|
|
|
"css",
|
|
|
|
"json",
|
|
|
|
"jsonc",
|
|
|
|
"less",
|
|
|
|
"postcss",
|
|
|
|
"sass",
|
|
|
|
"scss",
|
|
|
|
"sss",
|
|
|
|
"stylus",
|
|
|
|
"svg",
|
|
|
|
"xml"
|
|
|
|
],
|
|
|
|
"colorize.include": [
|
|
|
|
"*.conf",
|
|
|
|
"*.ttheme"
|
|
|
|
],
|
|
|
|
// Crates (ID: serayuzgur.crates).
|
|
|
|
"crates.compatibleDecorator": "✅ ${version}",
|
|
|
|
// Live Server (ID: ritwickdey.liveserver).
|
|
|
|
"liveServer.settings.donotShowInfoMsg": true,
|
|
|
|
"liveServer.settings.donotVerifyTags": true,
|
|
|
|
"liveServer.settings.root": "/public",
|
|
|
|
"liveServer.settings.wait": 1000,
|
|
|
|
// Markdown Preview Enhanced (ID: shd101wyy.markdown-preview-enhanced).
|
|
|
|
"markdown-preview-enhanced.previewTheme": "github-dark.css",
|
2023-01-23 11:02:14 +00:00
|
|
|
// Nix (ID: jnoortheen.nix-ide)
|
|
|
|
"nix.enableLanguageServer": true,
|
2022-05-11 21:28:41 +00:00
|
|
|
// Stylelint (ID: stylelint.vscode-stylelint)
|
|
|
|
"stylelint.validate": [
|
|
|
|
"css",
|
|
|
|
"less",
|
|
|
|
"postcss",
|
|
|
|
"scss"
|
|
|
|
],
|
|
|
|
// SVG Preview (ID: jock.svg)
|
|
|
|
"svg.preview.mode": "svg",
|
2022-10-27 09:31:18 +00:00
|
|
|
// Linter XO (ID: samverschueren.linter-xo).
|
|
|
|
"xo.format.enable": true,
|
2022-12-04 17:06:12 +00:00
|
|
|
"xo.validate": [
|
|
|
|
"astro",
|
|
|
|
"javascript",
|
|
|
|
"javascriptreact",
|
|
|
|
"mdx",
|
|
|
|
"typescript",
|
|
|
|
"typescriptreact"
|
|
|
|
],
|
2022-05-11 21:28:41 +00:00
|
|
|
/* Language-specific overrides. */
|
2022-12-04 17:06:12 +00:00
|
|
|
"[astro]": {
|
|
|
|
"editor.defaultFormatter": "samverschueren.linter-xo",
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
2022-05-11 21:28:41 +00:00
|
|
|
"[html]": {
|
|
|
|
"editor.wordWrap": "on",
|
|
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
|
|
},
|
|
|
|
"[json]": {
|
|
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
|
|
},
|
|
|
|
"[jsonc]": {
|
|
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
|
|
},
|
|
|
|
"[markdown]": {
|
|
|
|
"editor.rulers": [
|
|
|
|
65
|
|
|
|
],
|
|
|
|
"editor.wordWrap": "wordWrapColumn",
|
|
|
|
"editor.wordWrapColumn": 65
|
|
|
|
},
|
2022-12-04 17:06:12 +00:00
|
|
|
"[mdx]": {
|
|
|
|
"editor.defaultFormatter": "samverschueren.linter-xo",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.wordWrap": "wordWrapColumn",
|
|
|
|
"editor.wordWrapColumn": 80
|
|
|
|
},
|
2023-03-27 11:16:59 +00:00
|
|
|
"[nix]": {
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
2022-05-11 21:28:41 +00:00
|
|
|
"[python]": {
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.tabSize": 4
|
|
|
|
},
|
|
|
|
"[rust]": {
|
2022-09-24 20:36:23 +00:00
|
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
2022-05-11 21:28:41 +00:00
|
|
|
"editor.detectIndentation": false,
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
"editor.wordWrap": "wordWrapColumn"
|
|
|
|
},
|
2022-09-27 17:46:55 +00:00
|
|
|
"[scss]": {
|
|
|
|
"editor.defaultFormatter": "stylelint.vscode-stylelint",
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
2022-10-27 09:31:18 +00:00
|
|
|
"[typescript]": {
|
|
|
|
"editor.defaultFormatter": "samverschueren.linter-xo",
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
2022-12-04 17:06:12 +00:00
|
|
|
"[typescriptreact]": {
|
|
|
|
"editor.defaultFormatter": "samverschueren.linter-xo",
|
|
|
|
"editor.formatOnSave": true
|
|
|
|
},
|
2022-05-11 21:28:41 +00:00
|
|
|
"[xml]": {
|
|
|
|
"editor.wordWrap": "on"
|
|
|
|
}
|
|
|
|
}
|