nix-dots/user/modules/vscode/settings.json

89 lines
2.6 KiB
JSON

{
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.fontFamily": "'CaskaydiaCove Nerd Font', 'Cascadia Code', Menlo, Monaco, 'Courier New', monospace",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"editor.lineHeight": 20,
"editor.suggestSelection": "first",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font Mono', 'Cascadia Mono PL'",
"terminal.integrated.fontSize": 13,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"svelte.enable-ts-plugin": true,
"editor.accessibilitySupport": "off",
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"window.commandCenter": false,
"java.eclipse.downloadSources": true,
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/opt/homebrew/Cellar/openjdk@17/17.0.6/libexec/openjdk.jdk/Contents/Home",
"default": true
}
],
"editor.minimap.enabled": false,
"eslint.format.enable": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.wordWrap": "bounded"
},
"[latex]": {
"editor.wordWrap": "bounded"
},
"workbench.editor.enablePreview": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"diffEditor.ignoreTrimWhitespace": false,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": "off"
},
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"nix.enableLanguageServer": true,
"nix.serverPath": "nil",
"cSpell.userWords": ["typecheck"],
"workbench.colorTheme": "Gruvbox Dark Medium",
"r.plot.useHttpgd": true
}