Skip to content

Instantly share code, notes, and snippets.

@evangelistagrace
Created June 24, 2023 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evangelistagrace/9ad27f5eb27d8c7fd017b1ba49ff5710 to your computer and use it in GitHub Desktop.
Save evangelistagrace/9ad27f5eb27d8c7fd017b1ba49ff5710 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "Palenight Operator",
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "OperatorMonoLig-Book, FiraCode-Retina",
"editor.fontLigatures": true,
"editor.lineHeight": 20,
"terminal.integrated.fontFamily": "OperatorMonoLig-Book, FiraCode-Retina",
"terminal.integrated.fontSize": 15,
"vscode_custom_css.imports": [
"file:///Users/grace/Documents/vscode_extensions/style.css"
],
"workbench.colorCustomizations": {
"terminal.foreground": "#00FFFF"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"sonarlint.rules": {
"java:S106": {
"level": "off"
}
},
"java.refactor.renameFromFileExplorer": "autoApply",
"git.ignoreLegacyWarning": true,
"liveServer.settings.donotShowInfoMsg": true,
"editor.rulers": [],
"editor.snippetSuggestions": "top",
"terminal.integrated.tabs.enabled": true,
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"javascript.updateImportsOnFileMove.enabled": "always",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"code-runner.runInTerminal": true,
"workbench.editor.untitled.hint": "hidden",
"window.menuBarVisibility": "compact",
"remote.SSH.remotePlatform": {
"3codeasia": "linux",
"pixicode": "linux",
"idr": "linux",
"pixicode.xyz": "linux",
"chevs.pixicode": "linux",
"idr.pixicode": "linux",
"idr.idr": "linux",
"grace.idr": "linux"
},
"remote.SSH.enableAgentForwarding": false,
"remote.SSH.enableDynamicForwarding": false,
"remote.SSH.enableX11Forwarding": false,
"files.autoSave": "afterDelay",
"editor.minimap.enabled": false,
"[python]": {
"editor.formatOnType": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontVariations": false,
"editor.fontSize": 17
}
@evangelistagrace
Copy link
Author

vs-code-desktop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment