Skip to content

Instantly share code, notes, and snippets.

@Sapython
Created June 24, 2022 02:34
Show Gist options
  • Save Sapython/4e9e8a927cd161ae080bf8aefb9fe37f to your computer and use it in GitHub Desktop.
Save Sapython/4e9e8a927cd161ae080bf8aefb9fe37f to your computer and use it in GitHub Desktop.
Vscode settings
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.jediEnabled": false,
"editor.fontFamily": "Operator Mono Lig",
"terminal.integrated.fontFamily": "CaskaydiaCove NF",
"editor.fontLigatures": true,
"python.languageServer": "Default",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {
"activityBarBadge.background": "#00BCD4",
"activityBar.activeBorder": "#00BCD4",
"list.activeSelectionForeground": "#00BCD4",
"list.inactiveSelectionForeground": "#00BCD4",
"list.highlightForeground": "#00BCD4",
"scrollbarSlider.activeBackground": "#00BCD450",
"editorSuggestWidget.highlightForeground": "#00BCD4",
"textLink.foreground": "#00BCD4",
"progressBar.background": "#00BCD4",
"pickerGroup.foreground": "#00BCD4",
"tab.activeBorder": "#00BCD4",
"notificationLink.foreground": "#00BCD4",
"editorWidget.resizeBorder": "#00BCD4",
"editorWidget.border": "#00BCD4",
"settings.modifiedItemIndicator": "#00BCD4",
"settings.headerForeground": "#00BCD4",
"panelTitle.activeBorder": "#00BCD4",
"breadcrumb.activeSelectionForeground": "#00BCD4",
"menu.selectionForeground": "#00BCD4",
"menubar.selectionForeground": "#00BCD4",
"editor.findMatchBorder": "#00BCD4",
"selection.background": "#00BCD440",
"statusBarItem.remoteBackground": "#00BCD4"
},
"materialTheme.accent": "Cyan",
"[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
},
"dart.openDevTools": "flutter",
"debug.console.fontFamily": "Operator Mono Lig",
"scm.inputFontFamily": "Operator Mono Lig",
"vsintellicode.modelDownloadPath": "F:/VscodeModel/",
"vsintellicode.features.python.deepLearning": "enabled",
"jupyter.sendSelectionToInteractiveWindow": true,
"editor.minimap.enabled": false,
"debug.console.fontSize": 12,
"git.autofetch": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"diffEditor.codeLens": true,
"workbench.preferredHighContrastColorTheme": "One Dark Pro",
"chronicler.ffmpeg-binary": "D:\\ffmpegBin\\ffmpeg.exe",
"screencastMode.onlyKeyboardShortcuts": true,
"screencastMode.mouseIndicatorColor": "#00ffea",
"editor.renderWhitespace": "none",
"workbench.colorTheme": "One Dark Pro",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"angular.experimental-ivy": true,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.renderControlCharacters": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"keyword", //import, export, return…
"constant", //String, Number, Boolean…, this, super
"storage.modifier", //static keyword
"storage.type.class.js", //class keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.inlineSuggest.enabled": true,
"editor.inlayHints.fontFamily": "Operator Mono Lig",
"editor.codeLensFontFamily": "Operator Mono Lig",
"terminal.external.windowsExec": "pwsh",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false,
"html": true,
"scss": true,
"java": false,
"python": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cSpell.userWords": [
"aadhaar",
"adhaar",
"Aeps",
"alertify",
"Cascadiya",
"devkit",
"Firestore",
"jsonify",
"Saptam",
"Sapython",
"Shreeva",
"Solopreneur",
"tauri",
"vcref"
],
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"window.zoomLevel": 1,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.fontSize": 17,
"editor.codeLensFontSize": 14,
"kite.showWelcomeNotificationOnStartup": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment