vscode
This commit is contained in:
99
vscode/settings.json
Normal file
99
vscode/settings.json
Normal file
@ -0,0 +1,99 @@
|
||||
{
|
||||
//
|
||||
// Appearance
|
||||
"workbench.colorTheme": "Monokai Pro (Filter Octagon)",
|
||||
"workbench.iconTheme": "Monokai Pro (Filter Octagon) Icons",
|
||||
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
|
||||
"editor.fontSize": 18,
|
||||
"editor.fontWeight": "normal",
|
||||
"editor.fontLigatures": true,
|
||||
"editor.stickyScroll.enabled": true,
|
||||
"editor.minimap.renderCharacters": false,
|
||||
"editor.suggestSelection": "first",
|
||||
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
||||
//
|
||||
// Excluded files and directories
|
||||
"files.exclude": {
|
||||
"**/.classpath": true,
|
||||
"**/.project": true,
|
||||
"**/.settings": true,
|
||||
"**/.factorypath": true
|
||||
},
|
||||
"files.watcherExclude": {
|
||||
"**/.bloop": true,
|
||||
"**/.metals": true,
|
||||
"**/.ammonite": true
|
||||
},
|
||||
//
|
||||
// Settings Sync
|
||||
"settingsSync.ignoredSettings": [
|
||||
"sshfs.configs",
|
||||
"editor.fontFamily"
|
||||
],
|
||||
//
|
||||
// Various settings
|
||||
"explorer.confirmDragAndDrop": false,
|
||||
"workbench.startupEditor": "none",
|
||||
"security.workspace.trust.untrustedFiles": "open",
|
||||
"emmet.showExpandedAbbreviation": "never",
|
||||
//
|
||||
// Remote SSH
|
||||
"remote.SSH.remotePlatform": {
|
||||
"lab-pc07": "linux",
|
||||
"lab-pc28": "linux",
|
||||
"lab-pc01": "linux",
|
||||
"wasteside": "linux",
|
||||
"sralab": "linux"
|
||||
},
|
||||
"remote.SSH.serverInstallPath": {
|
||||
"sralab": "/srv/scratch/paul.aumann",
|
||||
"lab-pc00": "/srv/scratch/paul.aumann",
|
||||
"lab-pc44": "/srv/scratch/paul.aumann",
|
||||
},
|
||||
//
|
||||
// Python
|
||||
"python.languageServer": "Default",
|
||||
"[python]": {
|
||||
"editor.formatOnSave": true,
|
||||
"editor.rulers": [
|
||||
120
|
||||
],
|
||||
"editor.defaultFormatter": "ms-python.black-formatter",
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.organizeImports": "explicit"
|
||||
}
|
||||
},
|
||||
"black-formatter.args": [
|
||||
"--line-length",
|
||||
"120"
|
||||
],
|
||||
//
|
||||
// Jupyter Notebooks
|
||||
"notebook.cellToolbarLocation": {
|
||||
"default": "right",
|
||||
"jupyter-notebook": "left"
|
||||
},
|
||||
"workbench.editorAssociations": {
|
||||
"*.ipynb": "jupyter-notebook"
|
||||
},
|
||||
//
|
||||
// R
|
||||
"r.lsp.diagnostics": false,
|
||||
//
|
||||
// JSON
|
||||
"[json][jsonc]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
"prettier.singleQuote": true,
|
||||
//
|
||||
// Webdev
|
||||
"[typescript][typescriptreact][javascript][html]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.indentSize": "tabSize",
|
||||
"editor.tabSize": 2,
|
||||
"emmet.showAbbreviationSuggestions": false,
|
||||
"editor.linkedEditing": true,
|
||||
},
|
||||
"workbench.editor.showTabs": "none",
|
||||
}
|
||||
Reference in New Issue
Block a user